croc: 10.1.1 -> 10.1.3 (#364662)
[NixPkgs.git] / pkgs / development / python-modules / types-awscrt / default.nix
blobc1f4dd5c16617f4e4fbbf901a1e61e1c3c3d9843
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pythonOlder,
6   setuptools,
7 }:
9 buildPythonPackage rec {
10   pname = "types-awscrt";
11   version = "0.23.3";
12   pyproject = true;
14   disabled = pythonOlder "3.8";
16   src = fetchPypi {
17     pname = "types_awscrt";
18     inherit version;
19     hash = "sha256-BDwK4P5dJyYYKUy+rxw0mmVKn3wAEhvmTSdIaTOsSiY=";
20   };
22   build-system = [ setuptools ];
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   };