pythonPackages.croniter: init at 0.3.30
This commit is contained in:
parent
3c531669b1
commit
5498d4aaed
37
pkgs/development/python-modules/croniter/default.nix
Normal file
37
pkgs/development/python-modules/croniter/default.nix
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, python-dateutil
|
||||||
|
, pytest
|
||||||
|
, pytz
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "croniter";
|
||||||
|
version = "0.3.30";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "538adeb3a7f7816c3cdec6db974c441620d764c25ff4ed0146ee7296b8a50590";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
python-dateutil
|
||||||
|
];
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
pytest
|
||||||
|
pytz
|
||||||
|
];
|
||||||
|
|
||||||
|
checkPhase = ''
|
||||||
|
pytest src/croniter
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "croniter provides iteration for datetime object with cron like format";
|
||||||
|
homepage = http://github.com/kiorky/croniter;
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = [ maintainers.costrouc ];
|
||||||
|
};
|
||||||
|
}
|
@ -1671,6 +1671,8 @@ in {
|
|||||||
|
|
||||||
crc16 = callPackage ../development/python-modules/crc16 { };
|
crc16 = callPackage ../development/python-modules/crc16 { };
|
||||||
|
|
||||||
|
croniter = callPackage ../development/python-modules/croniter { };
|
||||||
|
|
||||||
csscompressor = callPackage ../development/python-modules/csscompressor {};
|
csscompressor = callPackage ../development/python-modules/csscompressor {};
|
||||||
|
|
||||||
csvs-to-sqlite = callPackage ../development/python-modules/csvs-to-sqlite { };
|
csvs-to-sqlite = callPackage ../development/python-modules/csvs-to-sqlite { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user