diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-12-16 22:44:16 +0000 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-12-30 11:40:47 +0000 |
| commit | 697328e980e27bc6512683e6ea6139bfa18c8fed (patch) | |
| tree | 0d62ae84a8c5c5b01d74736b27d5ce8c01dcf1ab /gnu | |
| parent | 88f3ec5a8109613065d44f9951eac62da93c4052 (diff) | |
gnu: Add python-utilities-awetzel.
* gnu/packages/astronomy.scm (python-utilities-awetzel): New variable.
Change-Id: I708abad27cc85264f6e788d529cebd1a9fad2a3b
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/astronomy.scm | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index b5bc4ee8cb..7dceba1ad7 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -10413,6 +10413,42 @@ between image and reference catalogs. Currently only aligning images with @code{FITS WCS} and @code{JWST gWCS} are supported.") (license license:bsd-3))) +(define-public python-utilities-awetzel + (package + (name "python-utilities-awetzel") + (version "1.0.3") + (source + (origin + (method url-fetch) + (uri (pypi-uri "utilities_awetzel" version)) + (sha256 + (base32 "049caadnxny330jday9hbg643b1fxpmkccjbxn1w9n6pmsx0ypql")))) + (build-system pyproject-build-system) + (arguments + (list + #:tests? #f ;no tests + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'relax-requirements + ;; XXX: remove on python-team merge + (lambda _ + (substitute* "pyproject.toml" + ((">=1.13") ">=1.11"))))))) + (native-inputs + (list python-setuptools)) + (propagated-inputs + (list python-h5py + python-matplotlib + python-numpy + python-scipy)) + (home-page "https://bitbucket.org/awetzel/utilities") + (synopsis "General routines for analyzing astrophysical data sets") + (description + "Python package of utility functions that are useful in analyzing various +datasets, in particular, catalogs of particles or galaxies/halos from +cosmological simulations.") + (license license:expat))) + (define-public python-viresclient (package (name "python-viresclient") |
