diff options
| author | Danny Milosavljevic <dannym@friendly-machines.com> | 2026-02-13 11:09:06 +0000 |
|---|---|---|
| committer | Danny Milosavljevic <dannym@friendly-machines.com> | 2026-02-21 21:52:39 +0100 |
| commit | 00c5a3859d1794fc2e37c580144293f04c180caa (patch) | |
| tree | 82b87a81d697aa87b7ddb17eb3ad3b1faf2faa91 | |
| parent | f8e2f21a82e9f362cd266ff0f742ffe374ac47dc (diff) | |
gnu: python-seekpath: Move to (gnu packages physics).
* gnu/packages/python-science.scm (python-seekpath): Move from here…
* gnu/packages/physics.scm (python-seekpath): …to here.
Change-Id: I67d060c3c5aeebe117b7d5cdeac0666a46e8f270
| -rw-r--r-- | gnu/packages/physics.scm | 35 | ||||
| -rw-r--r-- | gnu/packages/python-science.scm | 35 |
2 files changed, 35 insertions, 35 deletions
diff --git a/gnu/packages/physics.scm b/gnu/packages/physics.scm index cdd9653bd29..1e6cc9a69ab 100644 --- a/gnu/packages/physics.scm +++ b/gnu/packages/physics.scm @@ -267,3 +267,38 @@ in C. This package provides Python bindings for spglib, allowing Python programs to find symmetry operations, identify space groups, and perform other symmetry-related operations on crystal structures.") (license license:bsd-3))) + +(define-public python-seekpath + (package + (name "python-seekpath") + (version "2.1.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "seekpath" version)) + (sha256 + (base32 "1i2jhjc4ikd31v8wkxzfrvhwlv0dlzpkysf3lkafcql2c9wwbkii")))) + (build-system pyproject-build-system) + (arguments + (list + #:phases + #~(modify-phases %standard-phases + (replace 'check + (lambda* (#:key tests? #:allow-other-keys) + (when tests? + (invoke "pytest" "-vv" "tests"))))))) + (propagated-inputs + (list python-numpy + python-scipy + python-spglib)) + (native-inputs + (list python-pytest + python-setuptools)) + (home-page "https://github.com/giovannipizzi/seekpath") + (synopsis "K-path finder for band structure calculations") + (description + "SeeK-path is a Python module to obtain band paths in the Brillouin zone +of crystal structures. It automatically detects Bravais lattice types and +generates k-point labels and band paths following crystallographic +conventions.") + (license license:expat))) diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm index b704539996f..5fe4f0fe124 100644 --- a/gnu/packages/python-science.scm +++ b/gnu/packages/python-science.scm @@ -6498,41 +6498,6 @@ Python style, together with a fast and comfortable execution environment.") python-setuptools python-wheel)))) -(define-public python-seekpath - (package - (name "python-seekpath") - (version "2.1.0") - (source - (origin - (method url-fetch) - (uri (pypi-uri "seekpath" version)) - (sha256 - (base32 "1i2jhjc4ikd31v8wkxzfrvhwlv0dlzpkysf3lkafcql2c9wwbkii")))) - (build-system pyproject-build-system) - (arguments - (list - #:phases - #~(modify-phases %standard-phases - (replace 'check - (lambda* (#:key tests? #:allow-other-keys) - (when tests? - (invoke "pytest" "-vv" "tests"))))))) - (propagated-inputs - (list python-numpy - python-scipy - python-spglib)) - (native-inputs - (list python-pytest - python-setuptools)) - (home-page "https://github.com/giovannipizzi/seekpath") - (synopsis "K-path finder for band structure calculations") - (description - "SeeK-path is a Python module to obtain band paths in the Brillouin zone -of crystal structures. It automatically detects Bravais lattice types and -generates k-point labels and band paths following crystallographic -conventions.") - (license license:expat))) - (define-public python-orsopy (package (name "python-orsopy") |
