python3Packages.callee: use finalAttrs

This commit is contained in:
Sigmanificient
2026-06-02 23:57:33 +02:00
parent 19b802a019
commit e68f9cbe91
@@ -6,7 +6,7 @@
setuptools,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "callee";
version = "0.3.1";
pyproject = true;
@@ -14,7 +14,7 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "Xion";
repo = "callee";
tag = version;
tag = finalAttrs.version;
hash = "sha256-dsXMY3bW/70CmTfCuy5KjxPa+NLCzxzWv5e1aV2NEWE=";
};
@@ -35,4 +35,4 @@ buildPythonPackage rec {
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ hexa ];
};
}
})