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

42 lines
716 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, python-dateutil
, pytest
, pytz
2020-06-08 20:04:54 +01:00
, natsort
, tzlocal
}:
buildPythonPackage rec {
pname = "croniter";
version = "0.3.37";
src = fetchPypi {
inherit pname version;
sha256 = "12ced475dfc107bf7c6c1440af031f34be14cd97bbbfaf0f62221a9c11e86404";
};
propagatedBuildInputs = [
python-dateutil
2020-06-08 20:04:54 +01:00
natsort
];
checkInputs = [
pytest
pytz
2020-06-08 20:04:54 +01:00
tzlocal
];
checkPhase = ''
pytest src/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 ];
};
}