depot/third_party/nixpkgs/pkgs/development/python-modules/croniter/default.nix
Default email b450903751 Project import generated by Copybara.
GitOrigin-RevId: 74a1793c659d09d7cf738005308b1f86c90cb59b
2022-09-09 16:08:57 +02:00

40 lines
716 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, python-dateutil
, pytestCheckHook
, pytz
, tzlocal
}:
buildPythonPackage rec {
pname = "croniter";
version = "1.3.7";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-cu940PgzfrNTk7iJPr+/vrNA8tKuR+DS14Ew40sN2Lk=";
};
propagatedBuildInputs = [
python-dateutil
];
checkInputs = [
pytestCheckHook
pytz
tzlocal
];
pythonImportsCheck = [
"croniter"
];
meta = with lib; {
description = "Library to iterate over datetime object with cron like format";
homepage = "https://github.com/kiorky/croniter";
license = licenses.mit;
maintainers = with maintainers; [ costrouc ];
};
}