Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / types-tabulate / default.nix
blobfe5787f805f26a200b51b7e46b0ef1b7aa8f1c28
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , setuptools
5 }:
7 buildPythonPackage rec {
8   pname = "types-tabulate";
9   version = "0.9.0.20240106";
10   pyproject = true;
12   src = fetchPypi {
13     inherit pname version;
14     hash = "sha256-ybbbEN1/z1W9FxLdNTf4bdznKgj9Yrsa9DOMcJbOlH4=";
15   };
17   nativeBuildInputs = [
18     setuptools
19   ];
21   # Module doesn't have tests
22   doCheck = false;
24   pythonImportsCheck = [
25     "tabulate-stubs"
26   ];
28   meta = with lib; {
29     description = "Typing stubs for tabulate";
30     homepage = "https://github.com/python/typeshed";
31     license = licenses.asl20;
32     maintainers = with maintainers; [ jpetrucciani ];
33   };