python3Packages.croniter: 1.1.0 -> 1.2.0
This commit is contained in:
parent
5e895b728b
commit
87a3129311
1 changed files with 8 additions and 7 deletions
|
@ -4,22 +4,21 @@
|
|||
, python-dateutil
|
||||
, pytestCheckHook
|
||||
, pytz
|
||||
, natsort
|
||||
, tzlocal
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "croniter";
|
||||
version = "1.1.0";
|
||||
version = "1.2.0";
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "4023e4d18ced979332369964351e8f4f608c1f7c763e146b1d740002c4245247";
|
||||
hash = "sha256-CUQi9q657WRnFDk1A/o4iv5PhG4RDhmX/qV5TiCFwtc=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
python-dateutil
|
||||
natsort
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
|
@ -28,12 +27,14 @@ buildPythonPackage rec {
|
|||
tzlocal
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "croniter" ];
|
||||
pythonImportsCheck = [
|
||||
"croniter"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "croniter provides iteration for datetime object with cron like format";
|
||||
description = "Library to iterate over datetime object with cron like format";
|
||||
homepage = "https://github.com/kiorky/croniter";
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.costrouc ];
|
||||
maintainers = with maintainers; [ costrouc ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue