blob: b33d72b99b79005c59de18dc07889c2a28bcf940 (
plain) (
blame)
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
|
{ lib
, buildPythonPackage
, fetchPypi
, freezegun
, jaraco-functools
, pytest-freezegun
, pytestCheckHook
, pythonOlder
, pytz
, setuptools-scm
}:
buildPythonPackage rec {
pname = "tempora";
version = "5.5.1";
format = "pyproject";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-ortR4hIZdtkxNHs+QzkXw2S4P91fZO8nM2yGW/H7D3U=";
};
nativeBuildInputs = [
setuptools-scm
];
propagatedBuildInputs = [
jaraco-functools
pytz
];
nativeCheckInputs = [
freezegun
pytest-freezegun
pytestCheckHook
];
pythonImportsCheck = [
"tempora"
"tempora.schedule"
"tempora.timing"
"tempora.utc"
];
meta = with lib; {
description = "Objects and routines pertaining to date and time";
mainProgram = "calc-prorate";
homepage = "https://github.com/jaraco/tempora";
changelog = "https://github.com/jaraco/tempora/blob/v${version}/NEWS.rst";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}
|