blob: b6808dfb43f831e85ffb41f9620059babbbec341 (
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
{
lib,
buildPythonPackage,
django,
fetchFromGitHub,
icalendar,
pytestCheckHook,
pytest-django,
python-dateutil,
pytz,
setuptools,
}:
buildPythonPackage rec {
pname = "django-scheduler";
version = "0.10.1";
pyproject = true;
src = fetchFromGitHub {
owner = "llazzaro";
repo = "django-scheduler";
tag = version;
hash = "sha256-dY2TPo15RRWrv7LheUNJSQl4d/HeptSMM/wQirRSI5w=";
};
build-system = [ setuptools ];
dependencies = [
django
icalendar
python-dateutil
pytz
];
nativeCheckInputs = [
pytestCheckHook
pytest-django
];
preCheck = ''
export DJANGO_SETTINGS_MODULE=tests.settings
'';
patches = [
# Remove in Django 5.1
# https://github.com/llazzaro/django-scheduler/pull/567
./index_together.patch
];
postPatch = ''
# Remove in Django 5.1
substituteInPlace tests/settings.py \
--replace-fail "SHA1PasswordHasher" "PBKDF2PasswordHasher"
'';
disabledTests = lib.optionals (lib.versionAtLeast django.version "5.1") [
# test_delete_event_authenticated_user - AssertionError: 302 != 200
"test_delete_event_authenticated_user"
"test_event_creation_authenticated_user"
];
pythonImportsCheck = [ "schedule" ];
meta = {
description = "Calendar app for Django";
homepage = "https://github.com/llazzaro/django-scheduler";
changelog = "https://github.com/llazzaro/django-scheduler/releases/tag/${version}";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ derdennisop ];
};
}
|