5ca88bfbb9
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
64 lines
1.2 KiB
Nix
64 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
asgiref,
|
|
autobahn,
|
|
buildPythonPackage,
|
|
django,
|
|
fetchFromGitHub,
|
|
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=";
|
|
};
|
|
|
|
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";
|
|
};
|
|
}
|