diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-06-06 23:11:22 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-06-06 23:30:34 +0100 |
commit | a58f40b8b65ef90c8af4a24f1173e898a0de4712 (patch) | |
tree | c2353e44ade414c9f39f15e343bb503ef89fbe69 | |
parent | 57334d189dc326594ffde8858af5d2b86f64e354 (diff) | |
download | guix-a58f40b8b65ef90c8af4a24f1173e898a0de4712.tar.gz guix-a58f40b8b65ef90c8af4a24f1173e898a0de4712.zip |
gnu: python-extinction: Sort alphabetically.
* gnu/packages/astronomy.scm (python-extinction): Sort alphabetically.
Change-Id: Iacadaa9d5e54ff52f599f1e3121ccc409c77e6ee
-rw-r--r-- | gnu/packages/astronomy.scm | 52 |
1 files changed, 26 insertions, 26 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index bc0000070b..d1f98c27cd 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -778,6 +778,32 @@ astronomical images, especially when there is no WCS information available.") mining in astronomy.") (license license:bsd-2))) +(define-public python-extinction + (package + (name "python-extinction") + (version "0.4.6") + (source + (origin + (method git-fetch) ; No tests in PyPI + (uri (git-reference + (url "https://github.com/kbarbary/extinction") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1adxq926jd469mxm6llvsljgf2jqb06905h61i9qzc7m2yrm4wga")))) + (build-system pyproject-build-system) + (arguments + (list + #:test-flags #~(list "test.py"))) + (native-inputs (list python-cython python-pytest)) + (propagated-inputs (list python-numpy)) + (home-page "http://github.com/kbarbary/extinction") + (synopsis "Fast interstellar dust extinction laws") + (description + "This package provides a cython-optimized implementations of empirical dust +exitinction laws found in the literature.") + (license license:expat))) + (define-public python-fitsio (package (name "python-fitsio") @@ -2377,32 +2403,6 @@ for a table giving the position of a planet, asteroid, or comet for a series of dates.") (license license:expat))) -(define-public python-extinction - (package - (name "python-extinction") - (version "0.4.6") - (source - (origin - (method git-fetch) ; No tests in PyPI - (uri (git-reference - (url "https://github.com/kbarbary/extinction") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1adxq926jd469mxm6llvsljgf2jqb06905h61i9qzc7m2yrm4wga")))) - (build-system pyproject-build-system) - (arguments - (list - #:test-flags #~(list "test.py"))) - (native-inputs (list python-cython python-pytest)) - (propagated-inputs (list python-numpy)) - (home-page "http://github.com/kbarbary/extinction") - (synopsis "Fast interstellar dust extinction laws") - (description - "This package provides a cython-optimized implementations of empirical dust -exitinction laws found in the literature.") - (license license:expat))) - (define-public python-hvpy (package (name "python-hvpy") |