python2Packages.tzlocal: init at 2.1

needed for NixOps 2
This commit is contained in:
Robert Schütz 2021-11-19 10:42:57 -08:00
parent f7131dd9a3
commit c934296ece
2 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,36 @@
{ lib
, buildPythonPackage
, pythonOlder
, fetchPypi
, pytz
, mock
}:
buildPythonPackage rec {
pname = "tzlocal";
version = "2.1";
src = fetchPypi {
inherit pname version;
sha256 = "643c97c5294aedc737780a49d9df30889321cbe1204eac2c2ec6134035a92e44";
};
propagatedBuildInputs = [
pytz
];
checkInputs = [
mock
];
doCheck = false;
pythonImportsCheck = [ "tzlocal" ];
meta = with lib; {
description = "Tzinfo object for the local timezone";
homepage = "https://github.com/regebro/tzlocal";
license = licenses.cddl;
maintainers = with maintainers; [ dotlambda ];
};
}

View File

@ -644,6 +644,8 @@ with self; with super; {
typing = callPackage ../development/python-modules/typing { };
tzlocal = callPackage ../development/python-modules/tzlocal/2.nix { };
ujson = callPackage ../development/python-modules/ujson/2.nix { };
umemcache = callPackage ../development/python-modules/umemcache { };