{ lib , buildPythonPackage , fetchPypi }: buildPythonPackage rec { pname = "types-pytz"; version = "2021.3.6"; format = "setuptools"; src = fetchPypi { inherit pname version; sha256 = "sha256-dFR/2Q2NirTx7t86NEp9GG2XSGlziV+BIhpxLh4s2ZM="; }; # Modules doesn't have tests doCheck = false; pythonImportsCheck = [ "pytz-stubs" ]; meta = with lib; { description = "Typing stubs for pytz"; homepage = "https://github.com/python/typeshed"; license = licenses.asl20; maintainers = with maintainers; [ fab ]; }; }