[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#72741] [PATCH 31/32] gnu: Add python-zodipy.
From: |
Sharlatan Hellseher |
Subject: |
[bug#72741] [PATCH 31/32] gnu: Add python-zodipy. |
Date: |
Wed, 21 Aug 2024 01:03:33 +0100 |
* gnu/packages/astronomy.scm (python-zodipy): New variable.
Change-Id: I15a7603330ee0ca19ec6073ac312e15f44db1a2b
---
gnu/packages/astronomy.scm | 40 ++++++++++++++++++++++++++++++++++++++
1 file changed, 40 insertions(+)
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index e36a3b57ce..11c0ca306e 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -6017,6 +6017,46 @@ (define-public python-yt-astro-analysis
@end itemize")
(license (list license:bsd-3 license:lgpl3))))
+(define-public python-zodipy
+ (package
+ (name "python-zodipy")
+ (version "1.0.0")
+ (source
+ (origin
+ (method git-fetch) ;; no tests in the PyPI tarball
+ (uri (git-reference
+ (url "https://github.com/Cosmoglobe/zodipy")
+ (commit (string-append "v." version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "08hwicpv3wfpccr2cj1vxb8iy7av12yjs3prq0zw7qc89imrgrbn"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'relax-requirements
+ (lambda _
+ (substitute* "pyproject.toml"
+ ;; numpy = "^1.26.4"
+ (("1.26.4") "1.23.2")
+ ;; scipy = "^1.13.0"
+ (("1.13.0") "1.12.0")))))))
+ (propagated-inputs
+ (list python-astropy
+ python-jplephem
+ python-numpy
+ python-scipy))
+ (native-inputs
+ (list python-poetry-core
+ python-pytest))
+ (home-page "https://github.com/Cosmoglobe/zodipy")
+ (synopsis "Zodiacal emission simulations")
+ (description
+ "ZodiPy is an package for simulating zodiacal light in intensity for
+arbitrary solar system observers.")
+ (license license:gpl3+)))
+
(define-public qfits
(package
(name "qfits")
--
2.41.0
- [bug#72741] [PATCH 21/32] gnu: python-stpipe: Update to 0.7.0., (continued)
- [bug#72741] [PATCH 21/32] gnu: python-stpipe: Update to 0.7.0., Sharlatan Hellseher, 2024/08/20
- [bug#72741] [PATCH 22/32] gnu: python-sunpy: Update to 6.0.1., Sharlatan Hellseher, 2024/08/20
- [bug#72741] [PATCH 27/32] gnu: Add python-glue-astronomy., Sharlatan Hellseher, 2024/08/20
- [bug#72741] [PATCH 28/32] gnu: Add python-pvextractor., Sharlatan Hellseher, 2024/08/20
- [bug#72741] [PATCH 18/32] gnu: python-shapely: Update to 2.0.5., Sharlatan Hellseher, 2024/08/20
- [bug#72741] [PATCH 30/32] gnu: Add python-sunkit-image., Sharlatan Hellseher, 2024/08/20
- [bug#72741] [PATCH 25/32] gnu: Add python-pyxsim., Sharlatan Hellseher, 2024/08/20
- [bug#72741] [PATCH 29/32] gnu: Add python-glue-qt., Sharlatan Hellseher, 2024/08/20
- [bug#72741] [PATCH 32/32] gnu: python-sunkit-image: Disable more failing tests., Sharlatan Hellseher, 2024/08/20
- [bug#72741] [PATCH 19/32] gnu: python-shapely: Adjust home page., Sharlatan Hellseher, 2024/08/20
- [bug#72741] [PATCH 31/32] gnu: Add python-zodipy.,
Sharlatan Hellseher <=
- bug#72741: [PATCH 00/32] Astronomy update 2024/08., Sharlatan Hellseher, 2024/08/27