python3Packages.types-retry: modernize

This commit is contained in:
Harinn
2026-07-10 14:48:34 +07:00
parent 6ec1c2cf41
commit 3f6f76ca52
@@ -5,14 +5,16 @@
setuptools,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "types-retry";
version = "0.9.9.20250322";
pyproject = true;
__structuredAttrs = true;
src = fetchPypi {
pname = "types_retry";
inherit version;
inherit (finalAttrs) version;
hash = "sha256-LqpvS4MsGHEhBWmIu+bS0Lb06wNjH9yXUuKsKAL3tyY=";
};
@@ -29,4 +31,4 @@ buildPythonPackage rec {
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
}
})