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