summary refs log blame commit diff
path: root/pkgs/development/python-modules/tzdata/default.nix
blob: 7f1803d12c62eaddf7d20d5f0f9c6dc37932cc60 (plain) (tree)
1
2
3
4
5
6
7
8







                     










                                                                   




                                                            








                                                        
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, pytestCheckHook
, pytest-subtests
, importlib-resources
}:

buildPythonPackage rec {
  pname = "tzdata";
  version = "2021.1";
  format = "pyproject";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-4ZxzUfiHUioaxznSEEHlkt3ebdG3ZP3vqPeys1UdPTg=";
  };

  checkInputs = [
    pytestCheckHook
    pytest-subtests
  ] ++ lib.optional (pythonOlder "3.7") importlib-resources;

  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 ];
  };
}