about summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/turses/default.nix
diff options
context:
space:
mode:
authorIhar Hrachyshka <ihar@redhat.com>2019-09-21 05:36:23 -0700
committerJörg Thalheim <Mic92@users.noreply.github.com>2019-09-21 13:36:23 +0100
commit3a9cb10b2b88aefc6b6c25cdf14c206be174cc11 (patch)
tree9429504e28c74e51650f8cb8030a43d740bd62c8 /pkgs/applications/networking/instant-messengers/turses/default.nix
parent98c40b132d235b74ddd2271f7ffc43c2a42d0213 (diff)
turses: fix python3.7 support (#61984)
Diffstat (limited to 'pkgs/applications/networking/instant-messengers/turses/default.nix')
-rw-r--r--pkgs/applications/networking/instant-messengers/turses/default.nix13
1 files changed, 7 insertions, 6 deletions
diff --git a/pkgs/applications/networking/instant-messengers/turses/default.nix b/pkgs/applications/networking/instant-messengers/turses/default.nix
index a3f32bc829569..780dab79e997a 100644
--- a/pkgs/applications/networking/instant-messengers/turses/default.nix
+++ b/pkgs/applications/networking/instant-messengers/turses/default.nix
@@ -1,9 +1,7 @@
-{ stdenv, fetchpatch, python36Packages }:
+{ stdenv, fetchpatch, python3Packages }:
 
 with stdenv.lib;
-
-# Needs Python <3.7 for now, see https://github.com/louipc/turses/issues/4
-with python36Packages;
+with python3Packages;
 
 buildPythonPackage rec {
   pname = "turses";
@@ -14,8 +12,6 @@ buildPythonPackage rec {
     sha256 = "15mkhm3b5ka42h8qph0mhh8izfc1200v7651c62k7ldcs50ib9j6";
   };
 
-  disabled = ! python36Packages.pythonOlder "3.7";
-
   checkInputs = [ mock pytest coverage tox ];
   propagatedBuildInputs = [ urwid tweepy future ];
 
@@ -24,6 +20,11 @@ buildPythonPackage rec {
       url = "https://github.com/louipc/turses/commit/be0961b51f502d49fd9e2e5253ac130e543a31c7.patch";
       sha256 = "17s1n0275mcj03vkf3n39dmc09niwv4y7ssrfk7k3vqx22kppzg3";
     })
+    # python 3.7+ support
+    (fetchpatch {
+      url = "https://github.com/booxter/turses/commit/e6e285eae50fc3d2042a476185fe60daef1e758e.patch";
+      sha256 = "0g2zsrny955viwgs2l6gpiiz8m67b5sgdcxkjmfimfvvih5sg79f";
+    })
   ];
 
   checkPhase = ''