lol

Merge pull request #277337 from doronbehar/pkg/python-pint

python311Packages.pint: 0.22 -> 0.23

authored by

Doron Behar and committed by
GitHub
b0d36bd0 fb6f0051

+6 -4
+6 -4
pkgs/development/python-modules/pint/default.nix
··· 13 13 # tests 14 14 , pytestCheckHook 15 15 , pytest-subtests 16 + , pytest-benchmark 16 17 , numpy 17 18 , matplotlib 18 19 , uncertainties ··· 20 21 21 22 buildPythonPackage rec { 22 23 pname = "pint"; 23 - version = "0.22"; 24 + version = "0.23"; 24 25 format = "pyproject"; 25 26 26 27 disabled = pythonOlder "3.6"; ··· 28 29 src = fetchPypi { 29 30 inherit version; 30 31 pname = "Pint"; 31 - hash = "sha256-LROfarvPMBbK19POwFcH/pCKxPmc9Zrt/W7mZ7emRDM="; 32 + hash = "sha256-4VCbkWBtvFJSfGAKTvdP+sEv/3Boiv8g6QckCTRuybQ="; 32 33 }; 33 34 34 35 nativeBuildInputs = [ ··· 43 44 nativeCheckInputs = [ 44 45 pytestCheckHook 45 46 pytest-subtests 47 + pytest-benchmark 46 48 numpy 47 49 matplotlib 48 50 uncertainties ··· 53 55 ''; 54 56 55 57 disabledTests = [ 56 - # https://github.com/hgrecco/pint/issues/1825 57 - "test_equal_zero_nan_NP" 58 + # https://github.com/hgrecco/pint/issues/1898 59 + "test_load_definitions_stage_2" 58 60 ]; 59 61 60 62 meta = with lib; {