summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-qsymm/package.py31
1 files changed, 31 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-qsymm/package.py b/var/spack/repos/builtin/packages/py-qsymm/package.py
new file mode 100644
index 0000000000..6817a72a80
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-qsymm/package.py
@@ -0,0 +1,31 @@
+# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other
+# Spack Project Developers. See the top-level COPYRIGHT file for details.
+#
+# SPDX-License-Identifier: (Apache-2.0 OR MIT)
+
+from spack import *
+
+
+class PyQsymm(PythonPackage):
+ """Qsymm is a symmetry finder and symmetric Hamiltonian generator.
+ It automatically generates model Hamiltonians from symmetry
+ constraints and finds the full symmetry group of your Hamiltonian."""
+
+ homepage = "https://gitlab.kwant-project.org/qt/qsymm"
+ url = "https://pypi.io/packages/source/q/qsymm/qsymm-1.2.7.tar.gz"
+ git = "https://gitlab.kwant-project.org/qt/qsymm.git"
+
+ # Add a list of GitHub accounts to notify when the
+ # package is updated
+ maintainers = ['payerle']
+
+ version('1.2.7', sha256='9af92a30c3f72883c744d4717e4ec30c8b48121e208c10553e8e0e428fe43bbc')
+
+ depends_on('python@3.5:', type=('build', 'run'))
+ depends_on('py-setuptools', type='build')
+ depends_on('py-numpy@1.13:', type=('build', 'run'))
+ depends_on('py-scipy@0.19:', type=('build', 'run'))
+ depends_on('py-sympy@1.1:', type=('build', 'run'))
+ depends_on('py-tinyarray', type=('build', 'run'))
+ depends_on('py-pytest', type='test')
+ depends_on('py-pytest-runner', type='build')