diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-02-17 11:57:24 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-02-28 22:44:04 +0000 |
commit | 78bd8d84520114c0f3ef9e232c12cf0de7147f8e (patch) | |
tree | 680b0fc4492085e9a9b4d052bdca645d7b698b72 | |
parent | 165c090c6143eb8a5d7b7c91d6148e790779f977 (diff) |
gnu: Add python-esutil.
* gnu/packages/astronomy.scm (python-esutil): New variable.
Change-Id: I0a2a5351639e18d5d5c95df3eebabb9650d17e1d
-rw-r--r-- | gnu/packages/astronomy.scm | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index b0a572ca99..1cc549c214 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -2433,6 +2433,36 @@ for a table giving the position of a planet, asteroid, or comet for a series of dates.") (license license:expat))) +(define-public python-esutil + (package + (name "python-esutil") + (version "0.6.16") + (source + (origin + (method git-fetch) ; no tests in the PyPI tarball + (uri (git-reference + (url "https://github.com/esheldon/esutil") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05csk5asq3si7gdq8mpfh288z10rs45ylpcrrcjx0009q52l95xq")))) + (build-system pyproject-build-system) + (native-inputs + (list python-pytest + python-numpy + python-setuptools + python-wheel)) + (propagated-inputs + (list python-numpy + python-scipy)) + (home-page "https://github.com/esheldon/esutil") + (synopsis "Numerical, scientific, and astrophysical computing utilities") + (description + "This package provides a wide variety of utilities, focused primarily on +numerical python, statistics, and file input/output. Includes specialized +tools for astronomers.") + (license license:gpl2+))) + (define-public python-extinction (package (name "python-extinction") |