python.pkgs.pytzdata: init at 2017.3.1

This commit is contained in:
Frederik Rietdijk 2018-01-20 11:51:30 +01:00
parent 18e10a1e52
commit 851f05ef69
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,20 @@
{ stdenv, fetchPypi, buildPythonPackage }:
buildPythonPackage rec {
pname = "pytzdata";
version = "2017.3.1";
src = fetchPypi {
inherit pname version;
sha256 = "1wi3jh39zsa9iiyyhynhj7w5b2p9wdyd0ppavpsrmf3wxvr7cwz8";
};
# No tests
doCheck = false;
meta = with stdenv.lib; {
description = "Timezone database for Python";
homepage = https://github.com/sdispater/pytzdata;
license = licenses.mit;
};
}

View File

@ -15100,6 +15100,8 @@ in {
};
};
pytzdata = callPackage ../development/python-modules/pytzdata { };
pyutil = buildPythonPackage (rec {
name = "pyutil-2.0.0";