linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / pytz / default.nix
blob1a1e1585d289c4b57c9bb9c0e119cbe641ee9193
1 { lib, buildPythonPackage, fetchPypi, python }:
3 buildPythonPackage rec {
4   pname = "pytz";
5   version = "2021.1";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "sha256-g6SpCJS/OOJDzwUsi1jzgb/pp6SD9qnKsUC8f3AqxNo=";
10   };
12   checkPhase = ''
13     ${python.interpreter} -m unittest discover -s pytz/tests
14   '';
16   pythonImportsCheck = [ "pytz" ];
18   meta = with lib; {
19     description = "World timezone definitions, modern and historical";
20     homepage = "https://pythonhosted.org/pytz";
21     license = licenses.mit;
22     maintainers = with maintainers; [ dotlambda ];
23   };