diff --git a/pkgs/development/python-modules/univers/default.nix b/pkgs/development/python-modules/univers/default.nix index b34940307b12..799e4f66bf9a 100644 --- a/pkgs/development/python-modules/univers/default.nix +++ b/pkgs/development/python-modules/univers/default.nix @@ -13,14 +13,14 @@ setuptools-scm, }: -buildPythonPackage rec { +buildPythonPackage (finalAttrs: { pname = "univers"; - version = "31.1.0"; + version = "32.0.1"; pyproject = true; src = fetchPypi { - inherit pname version; - hash = "sha256-XGF+3QNlfwLdqoTbC2ahETSqYE/gSwbnyChIPwicnaY="; + inherit (finalAttrs) pname version; + hash = "sha256-+uGHJF9yvuFYHymwsLbpBwSbLqE24+Ur+Njtv+8Q5/A="; }; build-system = [ @@ -56,7 +56,7 @@ buildPythonPackage rec { meta = { description = "Library for parsing version ranges and expressions"; homepage = "https://github.com/aboutcode-org/univers"; - changelog = "https://github.com/aboutcode-org/univers/blob/v${version}/CHANGELOG.rst"; + changelog = "https://github.com/aboutcode-org/univers/blob/${finalAttrs.version}/CHANGELOG.rst"; license = with lib.licenses; [ asl20 bsd3 @@ -66,4 +66,4 @@ buildPythonPackage rec { armijnhemel ]; }; -} +})