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

21 lines
448 B
Nix
Raw Normal View History

2018-01-20 11:51:30 +01:00
{ stdenv, fetchPypi, buildPythonPackage }:
buildPythonPackage rec {
pname = "pytzdata";
2019-10-24 08:47:46 +02:00
version = "2019.3";
2018-01-20 11:51:30 +01:00
src = fetchPypi {
inherit pname version;
2019-10-24 08:47:46 +02:00
sha256 = "fac06f7cdfa903188dc4848c655e4adaee67ee0f2fe08e7daf815cf2a761ee5e";
2018-01-20 11:51:30 +01:00
};
# No tests
doCheck = false;
meta = with stdenv.lib; {
description = "Timezone database for Python";
homepage = https://github.com/sdispater/pytzdata;
license = licenses.mit;
};
}