From f5ce8f86dfa0a9f9dfe63462161f5ba982e57738 Mon Sep 17 00:00:00 2001 From: Vladimír Čunát Date: Mon, 26 Feb 2018 22:53:18 +0100 Subject: Revert "Merge staging at '8d490ca9934d0' into master" This reverts commit fc232422201c0364dbd57826c9a137cc1239caea, reversing changes made to 754816b84b98afdc0727e13dd66e1698b097de6a. We don't have many binaries yet. Comment on the original merge commit. --- pkgs/development/python-modules/daphne/default.nix | 26 ++++++---------------- 1 file changed, 7 insertions(+), 19 deletions(-) (limited to 'pkgs/development/python-modules/daphne') diff --git a/pkgs/development/python-modules/daphne/default.nix b/pkgs/development/python-modules/daphne/default.nix index 7fafee56b422..86b00ca74085 100644 --- a/pkgs/development/python-modules/daphne/default.nix +++ b/pkgs/development/python-modules/daphne/default.nix @@ -1,31 +1,19 @@ -{ stdenv, buildPythonPackage, isPy3k, fetchFromGitHub -, asgiref, autobahn, twisted, pytestrunner -, hypothesis, pytest, pytest-asyncio +{ stdenv, buildPythonPackage, fetchPypi, + asgiref, autobahn, twisted, hypothesis }: buildPythonPackage rec { pname = "daphne"; + name = "${pname}-${version}"; version = "2.0.3"; - disabled = !isPy3k; - - src = fetchFromGitHub { - owner = "django"; - repo = pname; - rev = version; - sha256 = "1rdnzpgyk5cnx4xc3c7k11v2x9xpihgjpq14fib80jfpcqggw687"; + src = fetchPypi { + inherit pname version; + sha256 = "bb2075ce35ca00f2e5440cc034dfebd5c00d346de62ea45f099db089b868c31f"; }; - nativeBuildInputs = [ pytestrunner ]; - + buildInputs = [ hypothesis ]; 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; { description = "Django ASGI (HTTP/WebSocket) server"; license = licenses.bsd3; -- cgit 1.4.1