python311Packages.types-aiobotocore: refactor
This commit is contained in:
parent
44e65a4aa1
commit
11abdddc81
1 changed files with 9 additions and 4 deletions
|
@ -1,10 +1,11 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, pythonOlder
|
||||
, aiobotocore
|
||||
, botocore
|
||||
, typing-extensions
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pythonOlder
|
||||
, setuptools
|
||||
, typing-extensions
|
||||
}:
|
||||
let
|
||||
toUnderscore = str: builtins.replaceStrings [ "-" ] [ "_" ] str;
|
||||
|
@ -13,7 +14,7 @@ let
|
|||
buildPythonPackage rec {
|
||||
pname = "types-aiobotocore-${serviceName}";
|
||||
inherit version;
|
||||
format = "setuptools";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
|
@ -21,6 +22,10 @@ let
|
|||
inherit pname version hash;
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
aiobotocore
|
||||
botocore
|
||||
|
|
Loading…
Reference in a new issue