diff options
author | Sharlatan Hellseher <[email protected]> | 2025-01-21 14:50:51 +0000 |
---|---|---|
committer | Sharlatan Hellseher <[email protected]> | 2025-01-29 23:01:02 +0000 |
commit | 50f1837c594d54fc59ca7af93610d59e19c5a4ea (patch) | |
tree | b85cc4ef3234434cd187749cc2444b251de9ae15 /gnu/packages/astronomy.scm | |
parent | 5a06e109fe466f8cbd8a2d6de1523fb71ddd1543 (diff) |
gnu: Add python-pvextractor-bootstrap.
* gnu/packages/astronomy.scm (python-pvextractor-bootstrap): New variable.
Change-Id: I2020fdb58b325056b41ea1038fe79c245c3fec60
Diffstat (limited to 'gnu/packages/astronomy.scm')
-rw-r--r-- | gnu/packages/astronomy.scm | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index fde482f086..aa9c9d2b11 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -2982,6 +2982,19 @@ that path, and along the spectral axis, producing a position-velocity or position-frequency slice.") (license license:bsd-3))) +(define-public python-pvextractor-bootstrap + (hidden-package + (package + (inherit python-pvextractor) + (arguments + (list #:tests? #f + #:phases #~(modify-phases %standard-phases + (delete 'sanity-check)))) + (propagated-inputs '()) + (native-inputs + (list python-setuptools + python-wheel))))) + (define-public python-pysiril (package (name "python-pysiril") |