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