anki-bin: 24.06.3 -> 24.11 (#360722)
[NixPkgs.git] / pkgs / development / python-modules / types-tabulate / default.nix
blob570581e05ac04f77f92569266ce91334900c42de
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   setuptools,
6 }:
8 buildPythonPackage rec {
9   pname = "types-tabulate";
10   version = "0.9.0.20240106";
11   pyproject = true;
13   src = fetchPypi {
14     inherit pname version;
15     hash = "sha256-ybbbEN1/z1W9FxLdNTf4bdznKgj9Yrsa9DOMcJbOlH4=";
16   };
18   nativeBuildInputs = [ setuptools ];
20   # Module doesn't have tests
21   doCheck = false;
23   pythonImportsCheck = [ "tabulate-stubs" ];
25   meta = with lib; {
26     description = "Typing stubs for tabulate";
27     homepage = "https://github.com/python/typeshed";
28     license = licenses.asl20;
29     maintainers = with maintainers; [ jpetrucciani ];
30   };