{ lib, buildPythonPackage, fetchPypi, setuptools, }: buildPythonPackage rec { pname = "types-pytz"; version = "2025.2.0.20251108"; pyproject = true; src = fetchPypi { pname = "types_pytz"; inherit version; hash = "sha256-/Kh5F4Nq6EPwcSlWe3TBkp8YcGEGgbTJLLhqPfWBe9s="; }; build-system = [ setuptools ]; # Modules doesn't have tests doCheck = false; pythonImportsCheck = [ "pytz-stubs" ]; meta = { description = "Typing stubs for pytz"; homepage = "https://github.com/python/typeshed"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ fab ]; }; }