python3Packages.cccolutils: modernize

This commit is contained in:
Harinn
2026-06-07 08:00:15 +07:00
parent 6b3a5bf71e
commit 3de7dbbd40
@@ -10,14 +10,16 @@
pytestCheckHook,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "cccolutils";
version = "1.5";
pyproject = true;
__structuredAttrs = true;
src = fetchPypi {
pname = "CCColUtils";
inherit version;
inherit (finalAttrs) version;
hash = "sha256-YzKjG43biRbTZKtzSUHHhtzOfcZfzISHDFolqzrBjL8=";
};
@@ -40,4 +42,4 @@ buildPythonPackage rec {
homepage = "https://pagure.io/cccolutils";
license = lib.licenses.gpl2Plus;
};
}
})