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
|
{
azure-mgmt-cdn,
azure-mgmt-frontdoor,
boto3,
buildPythonPackage,
django-pattern-library,
elasticsearch,
freezegun,
jinja2,
msrest,
python-dateutil,
python,
pytz,
responses,
wagtail,
wagtail-factories,
}:
buildPythonPackage {
pname = "wagtail-tests";
inherit (wagtail) src version;
pyproject = false;
dontBuild = true;
dontInstall = true;
checkInputs = [
azure-mgmt-cdn
azure-mgmt-frontdoor
boto3
django-pattern-library
elasticsearch
freezegun
jinja2
msrest
python-dateutil
pytz
responses
wagtail
wagtail-factories
];
checkPhase = ''
export DJANGO_SETTINGS_MODULE=wagtail.test.settings
${python.interpreter} -m django test
'';
}
|