nixpkgs/pkgs/development/python-modules/types-awscrt/default.nix

37 lines
750 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, poetry-core
, pythonOlder
}:
buildPythonPackage rec {
pname = "types-awscrt";
version = "0.19.1";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
pname = "types_awscrt";
inherit version;
hash = "sha256-YYM6oUDnJKkJgCVhD0uM3j3PZbhCYx10RzePn1204f0=";
};
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 ];
};
}