diff --git a/pkgs/development/python-modules/pint/default.nix b/pkgs/development/python-modules/pint/default.nix index f39caef6e59d..c5a9148f0e54 100644 --- a/pkgs/development/python-modules/pint/default.nix +++ b/pkgs/development/python-modules/pint/default.nix @@ -7,6 +7,7 @@ , packaging # Check Inputs , pytestCheckHook +, pytest-subtests , numpy , matplotlib , uncertainties @@ -14,12 +15,12 @@ buildPythonPackage rec { pname = "pint"; - version = "0.14"; + version = "0.18"; src = fetchPypi { inherit version; pname = "Pint"; - sha256 = "0wkzb7g20wzpqr3xaqpq96dlfv6irw202icsz81ys8npp7mm194s"; + sha256 = "sha256-jEvOiEwmkFH+t6vGnb/RhAPAx2SryD2hMuinIi+LqAE="; }; disabled = pythonOlder "3.6"; @@ -32,6 +33,7 @@ buildPythonPackage rec { # Test suite explicitly requires pytest checkInputs = [ pytestCheckHook + pytest-subtests numpy matplotlib uncertainties @@ -42,7 +44,7 @@ buildPythonPackage rec { description = "Physical quantities module"; license = licenses.bsd3; homepage = "https://github.com/hgrecco/pint/"; - maintainers = [ maintainers.costrouc ]; + maintainers = with maintainers; [ costrouc doronbehar ]; }; }