blob: a4e6ba12061c02cee0600a4f1f0c7ad3acb459b6 (
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
|
{
lib,
stdenv,
buildPythonPackage,
pythonOlder,
fetchPypi,
setuptools,
pytest-mock,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "tzlocal";
version = "5.2"; # version needs to be compatible with APScheduler
disabled = pythonOlder "3.8";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-jTmSBVePGpNCgWQJzB5GqT69V1XjnqLYUzS+qRG/Dm4=";
};
nativeBuildInputs = [ setuptools ];
nativeCheckInputs = [
pytest-mock
pytestCheckHook
];
disabledTests = [
"test_conflicting"
"test_noconflict"
"test_symlink_localtime"
] ++ lib.optional stdenv.hostPlatform.isDarwin "test_assert_tz_offset";
pythonImportsCheck = [ "tzlocal" ];
meta = with lib; {
description = "Tzinfo object for the local timezone";
homepage = "https://github.com/regebro/tzlocal";
changelog = "https://github.com/regebro/tzlocal/blob/${version}/CHANGES.txt";
license = licenses.cddl;
maintainers = with maintainers; [ dotlambda ];
};
}
|