summary refs log tree commit diff
path: root/pkgs/development/python-modules/daphne/default.nix
diff options
context:
space:
mode:
authorLancelot SIX <lsix@lancelotsix.com>2020-07-06 10:28:11 +0100
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2020-07-26 18:52:55 +0200
commit13c492aa814fe58ad0b6cecaa379d95d0094fdff (patch)
tree7862aa7ca0e4a6ea799e972d4836206566a224c6 /pkgs/development/python-modules/daphne/default.nix
parentbb2c199c19d192894bb8d9eef92d2db2890b260d (diff)
downloadnixpkgs-13c492aa814fe58ad0b6cecaa379d95d0094fdff.tar
nixpkgs-13c492aa814fe58ad0b6cecaa379d95d0094fdff.tar.gz
nixpkgs-13c492aa814fe58ad0b6cecaa379d95d0094fdff.tar.bz2
nixpkgs-13c492aa814fe58ad0b6cecaa379d95d0094fdff.tar.lz
nixpkgs-13c492aa814fe58ad0b6cecaa379d95d0094fdff.tar.xz
nixpkgs-13c492aa814fe58ad0b6cecaa379d95d0094fdff.tar.zst
nixpkgs-13c492aa814fe58ad0b6cecaa379d95d0094fdff.zip
python3Packages.daphne: 2.3.0 -> 2.5.0
Diffstat (limited to 'pkgs/development/python-modules/daphne/default.nix')
-rw-r--r--pkgs/development/python-modules/daphne/default.nix18
1 files changed, 5 insertions, 13 deletions
diff --git a/pkgs/development/python-modules/daphne/default.nix b/pkgs/development/python-modules/daphne/default.nix
index 49e6c3b3c47..80fa1c35d63 100644
--- a/pkgs/development/python-modules/daphne/default.nix
+++ b/pkgs/development/python-modules/daphne/default.nix
@@ -1,10 +1,10 @@
-{ stdenv, buildPythonPackage, isPy3k, fetchFromGitHub, fetchpatch
+{ stdenv, buildPythonPackage, isPy3k, fetchFromGitHub
 , asgiref, autobahn, twisted, pytestrunner
-, hypothesis, pytest, pytest-asyncio
+, hypothesis, pytest, pytest-asyncio, service-identity, pyopenssl
 }:
 buildPythonPackage rec {
   pname = "daphne";
-  version = "2.3.0";
+  version = "2.5.0";
 
   disabled = !isPy3k;
 
@@ -12,20 +12,12 @@ buildPythonPackage rec {
     owner = "django";
     repo = pname;
     rev = version;
-    sha256 = "020afrvbnid13gkgjpqznl025zpynisa96kybmf8q7m3wp1iq1nl";
+    sha256 = "0qkhmblj3a5s3z65cgz46xsvq1b6x4m3kr6aljjnxnv7hcwib02n";
   };
 
-  patches = [
-    # Fix compatibility with Hypothesis 4. See: https://github.com/django/daphne/pull/261
-    (fetchpatch {
-      url = "https://github.com/django/daphne/commit/2df5096c5b63a791c209e12198ad89c998869efd.patch";
-      sha256 = "0046krzcn02mihqmsjd80kk5h5flv44nqxpapa17g6dvq3jnb97n";
-    })
-  ];
-
   nativeBuildInputs = [ pytestrunner ];
 
-  propagatedBuildInputs = [ asgiref autobahn twisted ];
+  propagatedBuildInputs = [ asgiref autobahn twisted service-identity pyopenssl ];
 
   checkInputs = [ hypothesis pytest pytest-asyncio ];