lol

Merge pull request #301562 from r-ryantm/auto-update/python311Packages.hickle

python311Packages.hickle: 5.0.2 -> 5.0.3

authored by

Fabian Affolter and committed by
GitHub
eec2844f bdd4cadc

+19 -17
+19 -17
pkgs/development/python-modules/hickle/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchPypi 4 - , pythonOlder 5 - , h5py 6 - , numpy 7 - , dill 8 - , astropy 9 - , scipy 10 - , pandas 11 - , pytestCheckHook 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchPypi, 5 + pythonOlder, 6 + h5py, 7 + numpy, 8 + dill, 9 + astropy, 10 + scipy, 11 + pandas, 12 + pytestCheckHook, 13 + setuptools, 12 14 }: 13 15 14 16 buildPythonPackage rec { 15 17 pname = "hickle"; 16 18 version = "5.0.3"; 17 - format = "setuptools"; 19 + pyproject = true; 18 20 19 21 disabled = pythonOlder "3.5"; 20 22 ··· 25 27 26 28 postPatch = '' 27 29 substituteInPlace tox.ini \ 28 - --replace "--cov=./hickle" "" 30 + --replace-fail "--cov=./hickle" "" 29 31 ''; 30 32 31 - propagatedBuildInputs = [ 33 + build-system = [ setuptools ]; 34 + 35 + dependencies = [ 32 36 dill 33 37 h5py 34 38 numpy ··· 41 45 scipy 42 46 ]; 43 47 44 - pythonImportsCheck = [ 45 - "hickle" 46 - ]; 48 + pythonImportsCheck = [ "hickle" ]; 47 49 48 50 disabledTests = [ 49 51 # broken in 5.0.2 with recent NumPy