Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / types-typed-ast / default.nix
blob32671d5846416927881828bac830f41a909a490c
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "types-typed-ast";
8   version = "1.5.8.7";
9   format = "setuptools";
11   src = fetchPypi {
12     inherit pname version;
13     hash = "sha256-93lfb51ZezUhIxQEC5k/ZhO1HYFzjtzjweOj6e9lUSQ=";
14   };
16   # Module doesn't have tests
17   doCheck = false;
19   pythonImportsCheck = [
20     "typed_ast-stubs"
21   ];
23   meta = with lib; {
24     description = "Typing stubs for typed-ast";
25     homepage = "https://github.com/python/typeshed";
26     license = licenses.asl20;
27     maintainers = with maintainers; [ veehaitch ];
28   };