nixpkgs/pkgs/development/python-modules/daphne/default.nix

35 lines
836 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, isPy3k, fetchFromGitHub
, asgiref, autobahn, twisted, pytestrunner
, hypothesis, pytest, pytest-asyncio
2017-02-20 18:31:36 +03:00
}:
buildPythonPackage rec {
pname = "daphne";
2018-03-09 01:45:35 +03:00
version = "2.1.0";
2017-02-20 18:31:36 +03:00
disabled = !isPy3k;
src = fetchFromGitHub {
owner = "django";
repo = pname;
rev = version;
sha256 = "1lbpn0l796ar77amqy8dap30zxmsn6as8y2lbmp4lk8m9awscwi8";
2017-02-20 18:31:36 +03:00
};
nativeBuildInputs = [ pytestrunner ];
2017-02-20 18:31:36 +03:00
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"
'';
2017-02-20 18:31:36 +03:00
meta = with stdenv.lib; {
description = "Django ASGI (HTTP/WebSocket) server";
license = licenses.bsd3;
homepage = https://github.com/django/daphne;
};
}