diff options
author | Sharlatan Hellseher <[email protected]> | 2025-01-19 22:24:39 +0000 |
---|---|---|
committer | Sharlatan Hellseher <[email protected]> | 2025-01-29 23:04:31 +0000 |
commit | 7a3bb5b1c6dfe7776e96d777d442b8868794ba5f (patch) | |
tree | 857e5546ed1795a02997c5036ab3ec2795dd4402 /gnu | |
parent | 3d8e67f12c5fcce22c60773c9f880fc7e6658f3e (diff) |
gnu: Add python-ducc0.
* gnu/packages/maths.scm (python-ducc0): New variable.
Change-Id: Icb8990b32d25f4ad9bd2391f7745b6c298758efa
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/maths.scm | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index 22e5f82d71..c3017976f6 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -4013,6 +4013,46 @@ extensive standard library and on the strengths of Python as a high-level programming language.") (license license:gpl3+))) +(define-public python-ducc0 + (package + (name "python-ducc0") + (version "0.36.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gitlab.mpcdf.mpg.de/mtr/ducc") + (commit (string-append + "ducc0_" (string-replace-substring version "." "_"))))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1pfj7k5s3d237r7diqrd7cgvf8p5zms6pp64nfdildx49kwggwab")))) + (build-system pyproject-build-system) + (arguments + (list + #:test-flags #~(list "python/test") + #:phases + #~(modify-phases %standard-phases + (add-before 'build 'set-env + (lambda _ + (setenv "DUCC0_OPTIMIZATION" "portable-strip")))))) + (native-inputs + (list pybind11 + python-pytest + python-setuptools + python-wheel)) + (propagated-inputs + (list python-numpy)) + (home-page "https://gitlab.mpcdf.mpg.de/mtr/ducc") + (synopsis "Distinctly Useful Code Collection") + (description + "This package provides a collection of basic programming tools for +numerical computation, including Fast Fourier Transforms, Spherical Harmonic +Transforms, non-equispaced Fourier transforms, as well as some concrete +applications like 4pi convolution on the sphere and gridding/degridding of +radio interferometry data.") + (license license:gpl2+))) + (define-public python-kiwisolver (package (name "python-kiwisolver") |