nixpkgs/pkgs/development/python-modules/pytzdata/default.nix

21 lines
448 B
Nix
Raw Normal View History

2018-01-20 10:51:30 +00:00
{ stdenv, fetchPypi, buildPythonPackage }:
buildPythonPackage rec {
pname = "pytzdata";
2019-02-14 07:37:28 +00:00
version = "2018.9";
2018-01-20 10:51:30 +00:00
src = fetchPypi {
inherit pname version;
2019-02-14 07:37:28 +00:00
sha256 = "dddaaf4f1717820a6fdcac94057e03c1a15b3829a44d9eaf19988917977db408";
2018-01-20 10:51:30 +00:00
};
# No tests
doCheck = false;
meta = with stdenv.lib; {
description = "Timezone database for Python";
homepage = https://github.com/sdispater/pytzdata;
license = licenses.mit;
};
}