blob: a52e299b033a52155b44826e1eabe65d48f29106 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
arrow,
delorean,
pendulum,
pytestCheckHook,
pytz,
udatetime,
}:
buildPythonPackage rec {
pname = "pycron";
version = "3.2.0";
pyproject = true;
src = fetchFromGitHub {
owner = "kipe";
repo = "pycron";
tag = version;
hash = "sha256-AuDqElqu/cbTASHQfWM85JHu8DvkwArZ2leMZSB+XVM=";
};
build-system = [ poetry-core ];
nativeCheckInputs = [
arrow
delorean
pendulum
pytestCheckHook
pytz
udatetime
];
disabledTestPaths = [
# depens on nose
"tests/test_has_been.py"
];
pythonImportsCheck = [ "pycron" ];
meta = {
description = "Simple cron-like parser for Python, which determines if current datetime matches conditions";
license = lib.licenses.mit;
homepage = "https://github.com/kipe/pycron";
maintainers = [ ];
};
}
|