python3Packages.epc: use finalAttrs

This commit is contained in:
Sigmanificient
2026-07-20 23:58:21 +02:00
parent d78813e2de
commit ef86ab39d3

View File

@@ -6,14 +6,14 @@
setuptools,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "epc";
version = "0.0.5";
pyproject = true;
src = fetchPypi {
inherit pname version;
sha256 = "a14d2ea74817955a20eb00812e3a4630a132897eb4d976420240f1152c0d7d25";
inherit (finalAttrs) pname version;
hash = "sha256-oU0up0gXlVog6wCBLjpGMKEyiX602XZCAkDxFSwNfSU=";
};
build-system = [ setuptools ];
@@ -26,4 +26,4 @@ buildPythonPackage rec {
homepage = "https://github.com/tkf/python-epc";
license = lib.licenses.gpl3;
};
}
})