diff options
Diffstat (limited to 'pkgs/development/python-modules/hepunits/default.nix')
-rw-r--r-- | pkgs/development/python-modules/hepunits/default.nix | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/pkgs/development/python-modules/hepunits/default.nix b/pkgs/development/python-modules/hepunits/default.nix index 8089deecf006..abd89713aa05 100644 --- a/pkgs/development/python-modules/hepunits/default.nix +++ b/pkgs/development/python-modules/hepunits/default.nix @@ -1,19 +1,20 @@ -{ lib -, buildPythonPackage -, fetchPypi -, hatch-vcs -, hatchling -, pytestCheckHook +{ + lib, + buildPythonPackage, + fetchPypi, + hatch-vcs, + hatchling, + pytestCheckHook, }: buildPythonPackage rec { pname = "hepunits"; - version = "2.3.3"; + version = "2.3.5"; format = "pyproject"; src = fetchPypi { inherit pname version; - hash = "sha256-Z9fMd81U1ytpwmpo5e+teEK29o+ovGJ7uQ5BF3q+aUU="; + hash = "sha256-lDTNLWpyLJSenp4ivQtZWH9pAlvTc1blxwY18bNwNtg="; }; nativeBuildInputs = [ @@ -21,9 +22,7 @@ buildPythonPackage rec { hatchling ]; - nativeCheckInputs = [ - pytestCheckHook - ]; + nativeCheckInputs = [ pytestCheckHook ]; meta = { description = "Units and constants in the HEP system of units"; @@ -32,4 +31,3 @@ buildPythonPackage rec { maintainers = with lib.maintainers; [ doronbehar ]; }; } - |