python3Packages.asyncio-throttle: convert to finalAttrs

This commit is contained in:
Harinn
2026-06-03 21:20:44 +07:00
parent 44464d66ae
commit 11867efed1
@@ -7,7 +7,7 @@
setuptools,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "asyncio-throttle";
version = "1.0.2";
pyproject = true;
@@ -15,7 +15,7 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "hallazzang";
repo = "asyncio-throttle";
rev = "v${version}";
rev = "v${finalAttrs.version}";
sha256 = "1hsjcymdcm0hf4l68scf9n8j7ba89azgh96xhxrnyvwxfs5acnmv";
};
@@ -34,4 +34,4 @@ buildPythonPackage rec {
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ hexa ];
};
}
})