python3Packages.types-tabulate: init at 0.8.5

main
jacobi petrucciani 2 years ago
parent e5b47c5c21
commit 7be3d85b0b
  1. 24
      pkgs/development/python-modules/types-tabulate/default.nix
  2. 2
      pkgs/top-level/python-packages.nix

@ -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-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 { };

Loading…
Cancel
Save