Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / types-awscrt / default.nix
bloba9f1eb3d4614c0b26daa2417426fb2a092fd1615
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   poetry-core,
6   pythonOlder,
7 }:
9 buildPythonPackage rec {
10   pname = "types-awscrt";
11   version = "0.20.9";
12   pyproject = true;
14   disabled = pythonOlder "3.7";
16   src = fetchPypi {
17     pname = "types_awscrt";
18     inherit version;
19     hash = "sha256-ZImKL0okaPZiM8uMKcX2bekHz4C6HvW7E1mu8vgbtSE=";
20   };
22   build-system = [ poetry-core ];
24   pythonImportsCheck = [ "awscrt-stubs" ];
26   meta = with lib; {
27     description = "Type annotations and code completion for awscrt";
28     homepage = "https://github.com/youtype/types-awscrt";
29     changelog = "https://github.com/youtype/types-awscrt/releases/tag/${version}";
30     license = licenses.mit;
31     maintainers = with maintainers; [ fab ];
32   };