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

21 lines
450 B
Nix
Raw Normal View History

2018-01-20 10:51:30 +00:00
{ stdenv, fetchPypi, buildPythonPackage }:
buildPythonPackage rec {
pname = "pytzdata";
2019-10-24 06:47:46 +00:00
version = "2019.3";
2018-01-20 10:51:30 +00:00
src = fetchPypi {
inherit pname version;
2019-10-24 06:47:46 +00:00
sha256 = "fac06f7cdfa903188dc4848c655e4adaee67ee0f2fe08e7daf815cf2a761ee5e";
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";
2018-01-20 10:51:30 +00:00
license = licenses.mit;
};
}