[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#71702] [PATCH 28/30] gnu: Add python-yt-astro-analysis.
From: |
Sharlatan Hellseher |
Subject: |
[bug#71702] [PATCH 28/30] gnu: Add python-yt-astro-analysis. |
Date: |
Fri, 21 Jun 2024 19:38:50 +0100 |
* gnu/packages/astronomy.scm (python-yt-astro-analysis): New variable.
Change-Id: I5369d86b884aca1b18883083db872df9333eed9e
---
gnu/packages/astronomy.scm | 44 ++++++++++++++++++++++++++++++++++++++
1 file changed, 44 insertions(+)
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index 7dbb95f788..c6f69d2e03 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -5237,6 +5237,50 @@ (define-public python-yt
;; yt/frontends/artio/artio_headers/LICENSE: for C code.
license:lgpl3))))
+(define-public python-yt-astro-analysis
+ (package
+ (name "python-yt-astro-analysis")
+ (version "1.1.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "yt_astro_analysis" version))
+ (sha256
+ (base32 "1fb3sdp6hq2c4c28pd33v9yj14x9l7qizf3y3qpl594qdq1ffmpi"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list
+ ;; Disable test which require MPI setup and failed to run, check why.
+ #:test-flags #~(list "--ignore=test_halo_finders_ts.py")
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-before 'check 'build-extensions
+ (lambda _
+ (invoke "python" "setup.py" "build_ext" "--inplace"))))))
+ (propagated-inputs
+ (list python-h5py
+ python-numpy
+ python-packaging
+ python-yt))
+ (native-inputs
+ (list python-cython
+ python-nose
+ python-tomli))
+ (home-page "https://github.com/yt-project/yt_astro_analysis")
+ (synopsis "YT astrophysical analysis modules")
+ (description
+ "This package provides an @code{yt} extension package for astrophysical
+analysis. This package contains functionality for:
+
+@itemize
+@item halo finding and analysis
+@item lightcones
+@item planning cosmological simulations for making lightcones and lightrays
+@item exporting to the RADMC-3D radiation transport code
+@item creating PPV FITS cubes
+@end itemize")
+ (license (list license:bsd-3 license:lgpl3))))
+
(define-public qfits
(package
(name "qfits")
--
2.41.0
- [bug#71702] [PATCH 14/30] gnu: python-spherical-geometry: Update to 1.3.2., (continued)
- [bug#71702] [PATCH 14/30] gnu: python-spherical-geometry: Update to 1.3.2., Sharlatan Hellseher, 2024/06/21
- [bug#71702] [PATCH 18/30] gnu: python-stsci-imagestats: Update to 1.8.3., Sharlatan Hellseher, 2024/06/21
- [bug#71702] [PATCH 19/30] gnu: python-stsci-stimage: Update to 0.2.9., Sharlatan Hellseher, 2024/06/21
- [bug#71702] [PATCH 23/30] gnu: Add python-fast-histogram., Sharlatan Hellseher, 2024/06/21
- [bug#71702] [PATCH 24/30] gnu: Add python-naima., Sharlatan Hellseher, 2024/06/21
- [bug#71702] [PATCH 21/30] gnu: python-jwst: Replace reference to external configobj., Sharlatan Hellseher, 2024/06/21
- [bug#71702] [PATCH 25/30] gnu: Add python-regularizepsf., Sharlatan Hellseher, 2024/06/21
- [bug#71702] [PATCH 26/30] gnu: Add python-schwimmbad., Sharlatan Hellseher, 2024/06/21
- [bug#71702] [PATCH 27/30] gnu: Add python-statmorph., Sharlatan Hellseher, 2024/06/21
- [bug#71702] [PATCH 15/30] gnu: python-stcal: Update to 1.7.1., Sharlatan Hellseher, 2024/06/21
- [bug#71702] [PATCH 28/30] gnu: Add python-yt-astro-analysis.,
Sharlatan Hellseher <=
- [bug#71702] [PATCH 29/30] gnu: Add specification-specreduce-data., Sharlatan Hellseher, 2024/06/21
- [bug#71702] [PATCH 30/30] gnu: Add python-jwst-reffiles., Sharlatan Hellseher, 2024/06/21
- [bug#71702] [PATCH 22/30] gnu: Add python-corner., Sharlatan Hellseher, 2024/06/21
- bug#71702: [PATCH 00/30] Astronomy update 2024/06, Sharlatan Hellseher, 2024/06/30