2019-05-11 19:21:33 +01:00
|
|
|
{ stdenv, buildPythonPackage, isPy3k, fetchFromGitHub, fetchpatch
|
2018-02-20 02:26:25 +00:00
|
|
|
, 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";
|
2019-05-11 19:21:33 +01:00
|
|
|
version = "2.3.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;
|
2019-05-11 19:21:33 +01:00
|
|
|
sha256 = "020afrvbnid13gkgjpqznl025zpynisa96kybmf8q7m3wp1iq1nl";
|
2017-02-20 15:31:36 +00:00
|
|
|
};
|
|
|
|
|
2019-05-11 19:21:33 +01:00
|
|
|
patches = [
|
|
|
|
# Fix compatibility with Hypothesis 4. See: https://github.com/django/daphne/pull/261
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/django/daphne/commit/2df5096c5b63a791c209e12198ad89c998869efd.patch";
|
|
|
|
sha256 = "0046krzcn02mihqmsjd80kk5h5flv44nqxpapa17g6dvq3jnb97n";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
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 ];
|
|
|
|
|
2018-09-13 15:30:35 +01:00
|
|
|
doCheck = !stdenv.isDarwin; # most tests fail on darwin
|
|
|
|
|
2018-02-20 02:26:25 +00:00
|
|
|
checkPhase = ''
|
2018-09-13 15:30:35 +01:00
|
|
|
py.test
|
2018-02-20 02:26:25 +00:00
|
|
|
'';
|
|
|
|
|
2017-02-20 15:31:36 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Django ASGI (HTTP/WebSocket) server";
|
|
|
|
license = licenses.bsd3;
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/django/daphne";
|
2017-02-20 15:31:36 +00:00
|
|
|
};
|
|
|
|
}
|