mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 18:23:09 +00:00
python311Packages.botocore-stubs: init at 1.31.34
This commit is contained in:
parent
4a62b430e4
commit
f23b603a7b
42
pkgs/development/python-modules/botocore-stubs/default.nix
Normal file
42
pkgs/development/python-modules/botocore-stubs/default.nix
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, poetry-core
|
||||||
|
, pythonOlder
|
||||||
|
, types-awscrt
|
||||||
|
, typing-extensions
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "botocore-stubs";
|
||||||
|
version = "1.31.34";
|
||||||
|
format = "pyproject";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
pname = "botocore_stubs";
|
||||||
|
inherit version;
|
||||||
|
hash = "sha256-7HQvhmNqzyeHIgCYf+IGi6X7kmbOBBcKkOomtpjhVlQ=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
poetry-core
|
||||||
|
];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
types-awscrt
|
||||||
|
typing-extensions
|
||||||
|
];
|
||||||
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"botocore-stubs"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Type annotations and code completion for botocore";
|
||||||
|
homepage = "https://pypi.org/project/botocore-stubs/";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
@ -1525,6 +1525,8 @@ self: super: with self; {
|
|||||||
|
|
||||||
botocore = callPackage ../development/python-modules/botocore { };
|
botocore = callPackage ../development/python-modules/botocore { };
|
||||||
|
|
||||||
|
botocore-stubs = callPackage ../development/python-modules/botocore-stubs { };
|
||||||
|
|
||||||
botorch = callPackage ../development/python-modules/botorch { };
|
botorch = callPackage ../development/python-modules/botorch { };
|
||||||
|
|
||||||
bottle = callPackage ../development/python-modules/bottle { };
|
bottle = callPackage ../development/python-modules/bottle { };
|
||||||
|
Loading…
Reference in New Issue
Block a user