python39Packages.types-typed-ast: init 1.4.4
Co-authored-by: @jnetod @veehaitch @nbraud
This commit is contained in:
parent
8a976728e3
commit
5f2f409a26
26
pkgs/development/python-modules/types-typed-ast/default.nix
Normal file
26
pkgs/development/python-modules/types-typed-ast/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user