python3Packages.cobs: modernize

This commit is contained in:
Harinn
2026-06-07 22:37:59 +07:00
parent 04e094bae8
commit 91c5c8e46c

View File

@@ -5,13 +5,15 @@
setuptools,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "cobs";
version = "1.2.2";
pyproject = true;
__structuredAttrs = true;
src = fetchPypi {
inherit pname version;
inherit (finalAttrs) pname version;
hash = "sha256-291eMhEdcnhvg9DCaSFdzWrGKbGsGWLGh4Ih87LKmNo=";
};
@@ -41,4 +43,4 @@ buildPythonPackage rec {
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ kip93 ];
};
}
})