nav: init at 1.2.1 (#356071)
[NixPkgs.git] / pkgs / development / python-modules / types-typed-ast / default.nix
blob13713c669519cc6a279d9f457a68c1a9ffbca13a
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5 }:
7 buildPythonPackage rec {
8   pname = "types-typed-ast";
9   version = "1.5.8.7";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     hash = "sha256-93lfb51ZezUhIxQEC5k/ZhO1HYFzjtzjweOj6e9lUSQ=";
15   };
17   # Module doesn't have tests
18   doCheck = false;
20   pythonImportsCheck = [ "typed_ast-stubs" ];
22   meta = with lib; {
23     description = "Typing stubs for typed-ast";
24     homepage = "https://github.com/python/typeshed";
25     license = licenses.asl20;
26     maintainers = with maintainers; [ veehaitch ];
27   };