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
|
{
lib,
stdenv,
asgiref,
autobahn,
buildPythonPackage,
django,
fetchFromGitHub,
fetchpatch2,
hypothesis,
pytest-asyncio,
pytestCheckHook,
pythonOlder,
setuptools,
twisted,
}:
buildPythonPackage rec {
pname = "daphne";
version = "4.1.2";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "django";
repo = "daphne";
rev = "refs/tags/${version}";
hash = "sha256-RAK2CaKKVmVIv1MBK+9xyADOrHq664MQOry4KaGTNCw=";
};
patches = [
# https://github.com/django/daphne/pull/526
(fetchpatch2 {
name = "fix-tests-with-Twisted-24.7.0.patch";
url = "https://github.com/django/daphne/commit/0370c7a0937011d5345b14d484ec171d3ae9f875.patch";
hash = "sha256-/3d2pRcEtGvINGHRQF3RZ8IVIETSZb6rhf+ZHUFSQQo=";
})
];
postPatch = ''
substituteInPlace setup.cfg \
--replace-fail "pytest-runner" ""
'';
build-system = [ setuptools ];
dependencies = [
asgiref
autobahn
twisted
] ++ twisted.optional-dependencies.tls;
nativeCheckInputs = [
django
hypothesis
pytest-asyncio
pytestCheckHook
];
# Most tests fail on darwin
doCheck = !stdenv.isDarwin;
pythonImportsCheck = [ "daphne" ];
meta = with lib; {
description = "Django ASGI (HTTP/WebSocket) server";
homepage = "https://github.com/django/daphne";
changelog = "https://github.com/django/daphne/blob/${version}/CHANGELOG.txt";
license = licenses.bsd3;
maintainers = [ ];
mainProgram = "daphne";
};
}
|