pythonPackages.daphne: fix build and enable tests
This commit is contained in:
parent
8747ebd89f
commit
40b0c58549
@ -1,19 +1,31 @@
|
|||||||
{ stdenv, buildPythonPackage, fetchPypi,
|
{ stdenv, buildPythonPackage, isPy3k, fetchFromGitHub
|
||||||
asgiref, autobahn, twisted, hypothesis
|
, asgiref, autobahn, twisted, pytestrunner
|
||||||
|
, hypothesis, pytest, pytest-asyncio
|
||||||
}:
|
}:
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "daphne";
|
pname = "daphne";
|
||||||
name = "${pname}-${version}";
|
|
||||||
version = "2.0.3";
|
version = "2.0.3";
|
||||||
|
|
||||||
src = fetchPypi {
|
disabled = !isPy3k;
|
||||||
inherit pname version;
|
|
||||||
sha256 = "bb2075ce35ca00f2e5440cc034dfebd5c00d346de62ea45f099db089b868c31f";
|
src = fetchFromGitHub {
|
||||||
|
owner = "django";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "1rdnzpgyk5cnx4xc3c7k11v2x9xpihgjpq14fib80jfpcqggw687";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ hypothesis ];
|
nativeBuildInputs = [ pytestrunner ];
|
||||||
|
|
||||||
propagatedBuildInputs = [ asgiref autobahn twisted ];
|
propagatedBuildInputs = [ asgiref autobahn twisted ];
|
||||||
|
|
||||||
|
checkInputs = [ hypothesis pytest pytest-asyncio ];
|
||||||
|
|
||||||
|
checkPhase = ''
|
||||||
|
# Other tests fail, seems to be due to filesystem access
|
||||||
|
py.test -k "test_cli or test_utils"
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Django ASGI (HTTP/WebSocket) server";
|
description = "Django ASGI (HTTP/WebSocket) server";
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user