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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
{
lib,
stdenv,
fetchFromGitHub,
pythonOlder,
rustPlatform,
cargo,
rustc,
libiconv,
buildPythonPackage,
setuptools,
setuptools-rust,
pytestCheckHook,
pytest-mypy-plugins,
hypothesis,
freezegun,
time-machine,
nix-update-script,
}:
buildPythonPackage rec {
pname = "whenever";
version = "0.6.9";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "ariebovenberg";
repo = "whenever";
rev = "refs/tags/${version}";
hash = "sha256-Y2+ZQhQpUf747OlzhQRdT1B3jZgCr0BViJ6ujPJWo3w=";
};
cargoDeps = rustPlatform.fetchCargoTarball {
inherit src;
hash = "sha256-B1weEmW+Q7VxwnLxv9QH75I6IgEICTd70ci/I14ehLY=";
};
build-system = [
setuptools
setuptools-rust
rustPlatform.cargoSetupHook
cargo
rustc
];
buildInputs = lib.optionals stdenv.isDarwin [
libiconv
];
nativeCheckInputs = [
pytestCheckHook
pytest-mypy-plugins
# pytest-benchmark # developer sanity check, should not block distribution
hypothesis
freezegun
time-machine
];
disabledTestPaths = [
# benchmarks
"benchmarks/python/test_date.py"
"benchmarks/python/test_instant.py"
"benchmarks/python/test_local_datetime.py"
"benchmarks/python/test_zoned_datetime.py"
];
pythonImportsCheck = [ "whenever" ];
# a bunch of failures, including an assumption of what the timezone on the host is
# TODO: try enabling on bump
doCheck = false;
passthru.updateScript = nix-update-script { };
meta = with lib; {
description = "Strict, predictable, and typed datetimes";
homepage = "https://github.com/ariebovenberg/whenever";
changelog = "https://github.com/ariebovenberg/whenever/blob/${src.rev}/CHANGELOG.rst";
license = licenses.mit;
maintainers = with maintainers; [ pbsds ];
};
}
|