python: pytz: 2017.2 -> 2017.3

This commit is contained in:
Robert Schütz
2018-02-03 12:48:47 +01:00
committed by Frederik Rietdijk
parent 7953e05672
commit 330cad0d36
2 changed files with 24 additions and 21 deletions

View File

@@ -0,0 +1,23 @@
{ lib, buildPythonPackage, fetchPypi, python }:
buildPythonPackage rec {
pname = "pytz";
version = "2017.3";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "fae4cffc040921b8a2d60c6cf0b5d662c1190fe54d718271db4eb17d44a185b7";
};
checkPhase = ''
${python.interpreter} -m unittest discover -s pytz/tests
'';
meta = with lib; {
description = "World timezone definitions, modern and historical";
homepage = "http://pythonhosted.org/pytz";
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
};
}