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

36 lines
806 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, isPy3k, fetchFromGitHub
, asgiref, autobahn, twisted, pytestrunner
, hypothesis, pytest, pytest-asyncio
2017-02-20 16:31:36 +01:00
}:
buildPythonPackage rec {
pname = "daphne";
version = "2.2.2";
2017-02-20 16:31:36 +01:00
disabled = !isPy3k;
src = fetchFromGitHub {
owner = "django";
repo = pname;
rev = version;
sha256 = "1pr3b7zxjp2jx31lpiy1hfyprpmyiv2kd18n8x6kh6gd5nr0dgp8";
2017-02-20 16:31:36 +01:00
};
nativeBuildInputs = [ pytestrunner ];
2017-02-20 16:31:36 +01:00
propagatedBuildInputs = [ asgiref autobahn twisted ];
checkInputs = [ hypothesis pytest pytest-asyncio ];
doCheck = !stdenv.isDarwin; # most tests fail on darwin
checkPhase = ''
py.test
'';
2017-02-20 16:31:36 +01:00
meta = with stdenv.lib; {
description = "Django ASGI (HTTP/WebSocket) server";
license = licenses.bsd3;
homepage = https://github.com/django/daphne;
};
}