python3Packages.types-tabulate: init at 0.8.5
This commit is contained in:
parent
e5b47c5c21
commit
7be3d85b0b
2 changed files with 26 additions and 0 deletions
24
pkgs/development/python-modules/types-tabulate/default.nix
Normal file
24
pkgs/development/python-modules/types-tabulate/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "types-tabulate";
|
||||||
|
version = "0.8.5";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "sha256-A/KDvzhOoSG3tqWK+zj03vl/MHBPyhOg2mhpNrDzkqw=";
|
||||||
|
};
|
||||||
|
|
||||||
|
# Module doesn't have tests
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Typing stubs for tabulate";
|
||||||
|
homepage = "https://github.com/python/typeshed";
|
||||||
|
license = licenses.asl20;
|
||||||
|
maintainers = with maintainers; [ jpetrucciani ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -9945,6 +9945,8 @@ in {
|
||||||
|
|
||||||
types-setuptools = callPackage ../development/python-modules/types-setuptools { };
|
types-setuptools = callPackage ../development/python-modules/types-setuptools { };
|
||||||
|
|
||||||
|
types-tabulate = callPackage ../development/python-modules/types-tabulate { };
|
||||||
|
|
||||||
types-toml = callPackage ../development/python-modules/types-toml { };
|
types-toml = callPackage ../development/python-modules/types-toml { };
|
||||||
|
|
||||||
types-typed-ast = callPackage ../development/python-modules/types-typed-ast { };
|
types-typed-ast = callPackage ../development/python-modules/types-typed-ast { };
|
||||||
|
|
Loading…
Reference in a new issue