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

34 lines
705 B
Nix
Raw Normal View History

2021-03-15 15:36:24 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, pytestCheckHook
, pytest-subtests
, importlib-resources
}:
2021-02-14 06:36:01 +00:00
buildPythonPackage rec {
pname = "tzdata";
version = "2021.1";
format = "pyproject";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-4ZxzUfiHUioaxznSEEHlkt3ebdG3ZP3vqPeys1UdPTg=";
};
2021-03-15 15:36:24 +00:00
checkInputs = [
pytestCheckHook
pytest-subtests
] ++ lib.optional (pythonOlder "3.7") importlib-resources;
2021-02-14 06:36:01 +00:00
pythonImportsCheck = [ "tzdata" ];
meta = with lib; {
description = "Provider of IANA time zone data";
homepage = "https://github.com/python/tzdata";
license = licenses.asl20;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}