Merge pull request #305270 from phiadaarr/python3Packages.ducc0_34_0

python3Packages.ducc0: 0.33.0 -> 0.34.0

authored by

kirillrdy and committed by
GitHub
1fc05e60 c9d72a6f

+19 -6
+19 -6
pkgs/development/python-modules/ducc0/default.nix
··· 1 - { stdenv, lib, buildPythonPackage, fetchFromGitLab, pythonOlder, pytestCheckHook, pybind11, numpy }: 1 + { 2 + stdenv, 3 + lib, 4 + buildPythonPackage, 5 + fetchFromGitLab, 6 + numpy, 7 + pybind11, 8 + pytestCheckHook, 9 + pythonOlder, 10 + setuptools, 11 + }: 2 12 3 13 buildPythonPackage rec { 4 14 pname = "ducc0"; 5 - version = "0.33.0"; 6 - format = "setuptools"; 15 + version = "0.34.0"; 16 + pyproject = true; 7 17 8 18 disabled = pythonOlder "3.8"; 9 19 ··· 11 21 domain = "gitlab.mpcdf.mpg.de"; 12 22 owner = "mtr"; 13 23 repo = "ducc"; 14 - rev = "ducc0_${lib.replaceStrings ["."] ["_"] version}"; 15 - hash = "sha256-MezcqQRitBkK4/1rRQM2c9w+iZb2kIsDdcNd6I8CPoI="; 24 + rev = "ducc0_${lib.replaceStrings [ "." ] [ "_" ] version}"; 25 + hash = "sha256-lxNqB3Lt+n4vIH7cVW4DAwhjuPn49y+/3RLKVO8IuJM="; 16 26 }; 17 27 18 28 buildInputs = [ pybind11 ]; 19 29 propagatedBuildInputs = [ numpy ]; 20 30 21 - nativeCheckInputs = [ pytestCheckHook ]; 31 + nativeCheckInputs = [ 32 + pytestCheckHook 33 + setuptools 34 + ]; 22 35 pytestFlagsArray = [ "python/test" ]; 23 36 pythonImportsCheck = [ "ducc0" ]; 24 37