My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pytzdata/default.nix

20 lines
440 B

{ lib, fetchPypi, buildPythonPackage }:
buildPythonPackage rec {
pname = "pytzdata";
version = "2020.1";
src = fetchPypi {
inherit pname version;
sha256 = "3efa13b335a00a8de1d345ae41ec78dd11c9f8807f522d39850f2dd828681540";
};
# No tests
doCheck = false;
meta = with lib; {
description = "Timezone database for Python";
homepage = "https://github.com/sdispater/pytzdata";
license = licenses.mit;
};
}