python3Packages.cgen: use finalAttrs

This commit is contained in:
Sigmanificient
2026-01-06 22:58:44 +01:00
parent 3b4e40f0a3
commit cd9d4df513
@@ -9,13 +9,13 @@
pytestCheckHook,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "cgen";
version = "2025.1";
pyproject = true;
src = fetchPypi {
inherit pname version;
inherit (finalAttrs) pname version;
hash = "sha256-efAeAQ1JwT5YtMqPLUmWprcXiWj18tkGJiczSArnotQ=";
};
@@ -35,4 +35,4 @@ buildPythonPackage rec {
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ sigmanificient ];
};
}
})