2018-02-20 02:26:25 +00:00
|
|
|
{ stdenv, buildPythonPackage, isPy3k, fetchFromGitHub
|
|
|
|
, asgiref, autobahn, twisted, pytestrunner
|
|
|
|
, hypothesis, pytest, pytest-asyncio
|
2017-02-20 15:31:36 +00:00
|
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
2017-05-27 10:25:35 +01:00
|
|
|
pname = "daphne";
|
2018-03-08 22:45:35 +00:00
|
|
|
version = "2.1.0";
|
2017-02-20 15:31:36 +00:00
|
|
|
|
2018-02-20 02:26:25 +00:00
|
|
|
disabled = !isPy3k;
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "django";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2018-03-10 14:41:34 +00:00
|
|
|
sha256 = "1lbpn0l796ar77amqy8dap30zxmsn6as8y2lbmp4lk8m9awscwi8";
|
2017-02-20 15:31:36 +00:00
|
|
|
};
|
|
|
|
|
2018-02-20 02:26:25 +00:00
|
|
|
nativeBuildInputs = [ pytestrunner ];
|
|
|
|
|
2017-02-20 15:31:36 +00:00
|
|
|
propagatedBuildInputs = [ asgiref autobahn twisted ];
|
|
|
|
|
2018-02-20 02:26:25 +00:00
|
|
|
checkInputs = [ hypothesis pytest pytest-asyncio ];
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
# Other tests fail, seems to be due to filesystem access
|
|
|
|
py.test -k "test_cli or test_utils"
|
|
|
|
'';
|
|
|
|
|
2017-02-20 15:31:36 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Django ASGI (HTTP/WebSocket) server";
|
|
|
|
license = licenses.bsd3;
|
|
|
|
homepage = https://github.com/django/daphne;
|
|
|
|
};
|
|
|
|
}
|