python39Packages.types-typed-ast: init 1.4.4

Co-authored-by: @jnetod @veehaitch @nbraud
This commit is contained in:
superherointj
2021-11-18 14:16:50 +01:00
committed by Sandro Jäckel
co-authored by @jnetod @veehaitch @nbraud
parent 8a976728e3
commit 5f2f409a26
2 changed files with 28 additions and 0 deletions
@@ -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 ];
};
}
+2
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 { };