1 { lib, buildPythonPackage, fetchPypi, unittestCheckHook }:
3 buildPythonPackage rec {
5 version = "2023.3.post1";
10 inherit pname version;
11 hash = "sha256-e0/dvrlKHrpLVX2iTxn9+dtXUZJUQnCpEB2FCfn0PXs=";
14 nativeCheckInputs = [ unittestCheckHook ];
16 unittestFlagsArray = [ "-s" "pytz/tests" ];
18 pythonImportsCheck = [ "pytz" ];
21 description = "World timezone definitions, modern and historical";
22 homepage = "https://pythonhosted.org/pytz";
23 license = licenses.mit;
24 maintainers = with maintainers; [ dotlambda ];