python3Packages.types-retry: migrate to pyproject (#540366)

This commit is contained in:
Yohann Boniface
2026-07-12 21:42:29 +00:00
committed by GitHub

View File

@@ -2,19 +2,24 @@
lib,
buildPythonPackage,
fetchPypi,
setuptools,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "types-retry";
version = "0.9.9.20250322";
format = "setuptools";
pyproject = true;
__structuredAttrs = true;
src = fetchPypi {
pname = "types_retry";
inherit version;
inherit (finalAttrs) version;
hash = "sha256-LqpvS4MsGHEhBWmIu+bS0Lb06wNjH9yXUuKsKAL3tyY=";
};
build-system = [ setuptools ];
# Modules doesn't have tests
doCheck = false;
@@ -26,4 +31,4 @@ buildPythonPackage rec {
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
}
})