3
0
Fork 0
forked from mirrors/nixpkgs

python3Packages.types-decorator: init at 0.1.5

This commit is contained in:
Fabian Affolter 2021-07-06 16:47:12 +02:00 committed by Jonathan Ringer
parent 417563fab9
commit e4e7c8c2c3
2 changed files with 28 additions and 0 deletions

View file

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

View file

@ -8809,6 +8809,8 @@ in {
typer = callPackage ../development/python-modules/typer { };
types-decorator = callPackage ../development/python-modules/types-decorator { };
typesentry = callPackage ../development/python-modules/typesentry { };
typesystem = callPackage ../development/python-modules/typesystem { };