nixpkgs/pkgs/development/python-modules/croniter/default.nix
2021-12-14 12:03:27 -08:00

40 lines
724 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, python-dateutil
, pytestCheckHook
, pytz
, natsort
, tzlocal
}:
buildPythonPackage rec {
pname = "croniter";
version = "1.1.0";
src = fetchPypi {
inherit pname version;
sha256 = "4023e4d18ced979332369964351e8f4f608c1f7c763e146b1d740002c4245247";
};
propagatedBuildInputs = [
python-dateutil
natsort
];
checkInputs = [
pytestCheckHook
pytz
tzlocal
];
pythonImportsCheck = [ "croniter" ];
meta = with lib; {
description = "croniter provides iteration for datetime object with cron like format";
homepage = "https://github.com/kiorky/croniter";
license = licenses.mit;
maintainers = [ maintainers.costrouc ];
};
}