1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-20 12:42:24 +00:00

Merge pull request #155423 from jpetrucciani/add_types-tabulate

python3Packages.types-tabulate: init at 0.8.5
This commit is contained in:
Fabian Affolter 2022-01-18 00:19:54 +01:00 committed by GitHub
commit 0416898eed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 26 additions and 0 deletions

View 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 ];
};
}

View file

@ -9945,6 +9945,8 @@ in {
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-typed-ast = callPackage ../development/python-modules/types-typed-ast { };