python312Packages.fnllm: 0.0.11 -> 0.0.12 (#364582)
[NixPkgs.git] / pkgs / development / python-modules / types-pytz / default.nix
blob44e9fcaabd3c52d3b62d599c396554a498efbb60
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   setuptools,
6 }:
8 buildPythonPackage rec {
9   pname = "types-pytz";
10   version = "2024.2.0.20241003";
11   pyproject = true;
13   src = fetchPypi {
14     inherit pname version;
15     hash = "sha256-V13DjzhakiohK6wAp9bS4W4UETKjyVUHj0pP0T7Wy0Q=";
16   };
18   build-system = [ setuptools ];
20   # Modules doesn't have tests
21   doCheck = false;
23   pythonImportsCheck = [ "pytz-stubs" ];
25   meta = with lib; {
26     description = "Typing stubs for pytz";
27     homepage = "https://github.com/python/typeshed";
28     license = licenses.asl20;
29     maintainers = with maintainers; [ fab ];
30   };