python3Packages.easyprocess: use finalAttrs

This commit is contained in:
Timo Gottszky
2026-06-07 18:03:48 +02:00
parent 074b274bf9
commit ff02d18c84
@@ -4,14 +4,14 @@
fetchPypi,
}:
buildPythonPackage rec {
buildPythonPackage (finalAtrrs: {
pname = "easyprocess";
version = "1.1";
format = "setuptools";
src = fetchPypi {
pname = "EasyProcess";
inherit version;
inherit (finalAtrrs) version;
hash = "sha256-iFiYMCpXqrlIlz6LXTKkIpOSufstmGqx1P/VkOW6kOw=";
};
@@ -24,4 +24,4 @@ buildPythonPackage rec {
license = lib.licenses.bsdOriginal;
maintainers = with lib.maintainers; [ layus ];
};
}
})