15 buildPythonPackage rec {
18 format = "setuptools";
20 disabled = pythonOlder "3.7";
22 src = fetchFromGitHub {
26 hash = "sha256-vPMrmC2B0Pcvk8Y1FsJ4PXnzIMtPod7lL2u0IYNVUxc=";
29 propagatedBuildInputs = [
33 ] ++ twisted.optional-dependencies.tls;
43 substituteInPlace setup.py \
44 --replace "pytest-runner" ""
47 # Most tests fail on darwin
48 doCheck = !stdenv.isDarwin;
50 pythonImportsCheck = [
55 description = "Django ASGI (HTTP/WebSocket) server";
56 homepage = "https://github.com/django/daphne";
57 license = licenses.bsd3;
58 maintainers = with maintainers; [ ];