nixpkgs/pkgs/development/python-modules/types-awscrt/default.nix
2024-04-17 08:53:17 +02:00

34 lines
736 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
poetry-core,
pythonOlder,
}:
buildPythonPackage rec {
pname = "types-awscrt";
version = "0.20.9";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
pname = "types_awscrt";
inherit version;
hash = "sha256-ZImKL0okaPZiM8uMKcX2bekHz4C6HvW7E1mu8vgbtSE=";
};
build-system = [ 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 ];
};
}