python39Packages.types-typed-ast: init 1.4.4

Co-authored-by: @jnetod @veehaitch @nbraud
This commit is contained in:
superherointj 2021-10-05 11:43:12 -03:00 committed by Sandro Jäckel
parent 8a976728e3
commit 5f2f409a26
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "types-typed-ast";
version = "1.4.4";
src = fetchPypi {
inherit pname version;
sha256 = "ffa0471e0ba19c4ea0cba0436d660871b5f5215854ea9ead3cb5b60f525af75a";
};
# Module doesn't have tests
doCheck = false;
pythonImportsCheck = [ "typed_ast-stubs" ];
meta = with lib; {
description = "Typing stubs for typed-ast";
homepage = "https://github.com/python/typeshed";
license = licenses.asl20;
maintainers = with maintainers; [ superherointj veehaitch ];
};
}

View File

@ -9534,6 +9534,8 @@ in {
types-toml = callPackage ../development/python-modules/types-toml { };
types-typed-ast = callPackage ../development/python-modules/types-typed-ast { };
typesentry = callPackage ../development/python-modules/typesentry { };
typesystem = callPackage ../development/python-modules/typesystem { };