python313Packages.botocore-stubs: modernize

This commit is contained in:
Fabian Affolter
2026-01-13 08:24:15 +01:00
committed by GitHub
parent 46e54f96bd
commit f0f506672a
@@ -7,20 +7,20 @@
typing-extensions,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "botocore-stubs";
version = "1.42.26";
pyproject = true;
src = fetchPypi {
pname = "botocore_stubs";
inherit version;
inherit (finalAttrs) version;
hash = "sha256-WwlGaB1GzorLCjuElL33bTS8JidvC3uu3PiKbPHdeYs=";
};
nativeBuildInputs = [ setuptools ];
build-system = [ setuptools ];
propagatedBuildInputs = [
dependencies = [
types-awscrt
typing-extensions
];
@@ -33,4 +33,4 @@ buildPythonPackage rec {
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
})