diff options
author | Vinicius Monego <monego@posteo.net> | 2022-01-09 04:38:41 +0000 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-01-25 23:54:45 +0100 |
commit | ebac201995aa663716e0aeb7ddd9e2af24b09770 (patch) | |
tree | cddeaddb42ed4132a7cb1e2b1c14cd117db48002 | |
parent | 5e51ccc120871502609de10f21b897af33594a65 (diff) | |
download | guix-ebac201995aa663716e0aeb7ddd9e2af24b09770.tar.gz |
gnu: Add python-regions.
* gnu/packages/astronomy.scm (python-regions): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | gnu/packages/astronomy.scm | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index 20961e1436..e968fd2480 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -857,6 +857,45 @@ of astronomical sources.") Virtual observatory (VO) using Python.") (license license:bsd-3))) +(define-public python-regions + (package + (name "python-regions") + (version "0.5") + (source + (origin + (method url-fetch) + (uri (pypi-uri "regions" version)) + (sha256 + (base32 "1bjrcjchbw3xw1a26d5g198lh7vxpp9m5sal58r7f8mmr1d8g2dc")))) + (build-system python-build-system) + (arguments + `(#:test-target "pytest" + #:phases + (modify-phases %standard-phases + ;; This doctest requires online data. + (add-after 'unpack 'delete-doctest + (lambda _ (delete-file "docs/masks.rst"))) + ;; This file is opened in both install and check phases. + (add-before 'install 'writable-compiler + (lambda _ (make-file-writable "regions/_compiler.c"))) + (add-before 'check 'writable-compiler + (lambda _ (make-file-writable "regions/_compiler.c"))) + (add-before 'check 'writable-home + (lambda _ (setenv "HOME" (getcwd))))))) + (propagated-inputs + (list python-astropy python-numpy)) + (native-inputs + (list python-cython + python-extension-helpers + python-pytest-arraydiff + python-pytest-astropy + python-pytest-runner + python-setuptools-scm)) + (home-page "https://github.com/astropy/regions") + (synopsis "Package for region handling") + (description "Regions is an Astropy package for region handling.") + (license license:bsd-3))) + (define-public python-astral (package (name "python-astral") |