12 buildPythonPackage rec {
17 disabled = pythonOlder "3.8";
19 src = fetchFromGitLab {
20 domain = "gitlab.mpcdf.mpg.de";
23 rev = "ducc0_${lib.replaceStrings [ "." ] [ "_" ] version}";
24 hash = "sha256-lxNqB3Lt+n4vIH7cVW4DAwhjuPn49y+/3RLKVO8IuJM=";
27 buildInputs = [ pybind11 ];
28 propagatedBuildInputs = [ numpy ];
34 pytestFlagsArray = [ "python/test" ];
35 pythonImportsCheck = [ "ducc0" ];
38 homepage = "https://gitlab.mpcdf.mpg.de/mtr/ducc";
39 description = "Efficient algorithms for Fast Fourier transforms and more";
40 license = licenses.gpl2Plus;
41 maintainers = with maintainers; [ parras ];