python3Packages.univers: 31.1.0 -> 32.0.1 (#516732)

This commit is contained in:
Fabian Affolter
2026-05-07 06:23:21 +00:00
committed by GitHub
@@ -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
];
};
}
})