depot/third_party/nixpkgs/pkgs/development/python-modules/daphne/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

60 lines
1.1 KiB
Nix

{
lib,
stdenv,
asgiref,
autobahn,
buildPythonPackage,
django,
fetchFromGitHub,
hypothesis,
pytest-asyncio,
pytestCheckHook,
pythonOlder,
twisted,
}:
buildPythonPackage rec {
pname = "daphne";
version = "4.0.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "django";
repo = pname;
rev = version;
hash = "sha256-vPMrmC2B0Pcvk8Y1FsJ4PXnzIMtPod7lL2u0IYNVUxc=";
};
propagatedBuildInputs = [
asgiref
autobahn
twisted
] ++ twisted.optional-dependencies.tls;
nativeCheckInputs = [
django
hypothesis
pytest-asyncio
pytestCheckHook
];
postPatch = ''
substituteInPlace setup.py \
--replace "pytest-runner" ""
'';
# Most tests fail on darwin
doCheck = !stdenv.isDarwin;
pythonImportsCheck = [ "daphne" ];
meta = with lib; {
description = "Django ASGI (HTTP/WebSocket) server";
mainProgram = "daphne";
homepage = "https://github.com/django/daphne";
license = licenses.bsd3;
maintainers = with maintainers; [ ];
};
}