summary refs log tree commit diff
path: root/pkgs/development/python-modules/daphne
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-02-20 03:26:25 +0100
committerRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-02-22 01:46:11 +0100
commit40b0c5854938469b2e04db31c0c9c8721ad13660 (patch)
treeeb152283d954288806857ae49cc2f6f788a58487 /pkgs/development/python-modules/daphne
parent8747ebd89f71c88e088c4c68ef6482ca43c2d7a4 (diff)
downloadnixlib-40b0c5854938469b2e04db31c0c9c8721ad13660.tar
nixlib-40b0c5854938469b2e04db31c0c9c8721ad13660.tar.gz
nixlib-40b0c5854938469b2e04db31c0c9c8721ad13660.tar.bz2
nixlib-40b0c5854938469b2e04db31c0c9c8721ad13660.tar.lz
nixlib-40b0c5854938469b2e04db31c0c9c8721ad13660.tar.xz
nixlib-40b0c5854938469b2e04db31c0c9c8721ad13660.tar.zst
nixlib-40b0c5854938469b2e04db31c0c9c8721ad13660.zip
pythonPackages.daphne: fix build and enable tests
Diffstat (limited to 'pkgs/development/python-modules/daphne')
-rw-r--r--pkgs/development/python-modules/daphne/default.nix26
1 files changed, 19 insertions, 7 deletions
diff --git a/pkgs/development/python-modules/daphne/default.nix b/pkgs/development/python-modules/daphne/default.nix
index 86b00ca74085..7fafee56b422 100644
--- a/pkgs/development/python-modules/daphne/default.nix
+++ b/pkgs/development/python-modules/daphne/default.nix
@@ -1,19 +1,31 @@
-{ stdenv, buildPythonPackage, fetchPypi,
-  asgiref, autobahn, twisted, hypothesis
+{ stdenv, buildPythonPackage, isPy3k, fetchFromGitHub
+, asgiref, autobahn, twisted, pytestrunner
+, hypothesis, pytest, pytest-asyncio
 }:
 buildPythonPackage rec {
   pname = "daphne";
-  name = "${pname}-${version}";
   version = "2.0.3";
 
-  src = fetchPypi {
-    inherit pname version;
-    sha256 = "bb2075ce35ca00f2e5440cc034dfebd5c00d346de62ea45f099db089b868c31f";
+  disabled = !isPy3k;
+
+  src = fetchFromGitHub {
+    owner = "django";
+    repo = pname;
+    rev = version;
+    sha256 = "1rdnzpgyk5cnx4xc3c7k11v2x9xpihgjpq14fib80jfpcqggw687";
   };
 
-  buildInputs = [ hypothesis ];
+  nativeBuildInputs = [ pytestrunner ];
+
   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;