python311Packages.types-awscrt: init at 0.19.0
This commit is contained in:
parent
5690c4271f
commit
4a62b430e4
36
pkgs/development/python-modules/types-awscrt/default.nix
Normal file
36
pkgs/development/python-modules/types-awscrt/default.nix
Normal file
@ -0,0 +1,36 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, poetry-core
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "types-awscrt";
|
||||
version = "0.19.0";
|
||||
format = "pyproject";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
pname = "types_awscrt";
|
||||
inherit version;
|
||||
hash = "sha256-6u9gQiz3FrSuIW8WS3TWecgrDZxT2zgKN96ymuVXmxs=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
poetry-core
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"awscrt-stubs"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Type annotations and code completion for awscrt";
|
||||
homepage = "https://github.com/youtype/types-awscrt";
|
||||
changelog = "https://github.com/youtype/types-awscrt/releases/tag/${version}";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -13118,6 +13118,8 @@ self: super: with self; {
|
||||
|
||||
types-appdirs = callPackage ../development/python-modules/types-appdirs { };
|
||||
|
||||
types-awscrt = callPackage ../development/python-modules/types-awscrt { };
|
||||
|
||||
types-beautifulsoup4 = callPackage ../development/python-modules/types-beautifulsoup4 { };
|
||||
|
||||
types-colorama = callPackage ../development/python-modules/types-colorama { };
|
||||
|
Loading…
Reference in New Issue
Block a user