summary refs log tree commit diff
path: root/pkgs/development/python-modules/graph-tool
diff options
context:
space:
mode:
authorTimo Kaufmann <timokau@zoho.com>2019-01-10 00:10:34 +0100
committerGitHub <noreply@github.com>2019-01-10 00:10:34 +0100
commit8dd63a67e9f5b6711614bd226c24b3cdaa0a04dc (patch)
tree56ae94a4ad5a968a88aa3e04b2516135af40b1d1 /pkgs/development/python-modules/graph-tool
parent36b09654f06f84855af6285c589cde6a371c7428 (diff)
downloadnixpkgs-8dd63a67e9f5b6711614bd226c24b3cdaa0a04dc.tar
nixpkgs-8dd63a67e9f5b6711614bd226c24b3cdaa0a04dc.tar.gz
nixpkgs-8dd63a67e9f5b6711614bd226c24b3cdaa0a04dc.tar.bz2
nixpkgs-8dd63a67e9f5b6711614bd226c24b3cdaa0a04dc.tar.lz
nixpkgs-8dd63a67e9f5b6711614bd226c24b3cdaa0a04dc.tar.xz
nixpkgs-8dd63a67e9f5b6711614bd226c24b3cdaa0a04dc.tar.zst
nixpkgs-8dd63a67e9f5b6711614bd226c24b3cdaa0a04dc.zip
python3.pkgs.graph-tool: fix with python3.7 (#53719)
"async" is now reserved, there is an upstream fix but no release yet.
Diffstat (limited to 'pkgs/development/python-modules/graph-tool')
-rw-r--r--pkgs/development/python-modules/graph-tool/2.x.x.nix11
1 files changed, 10 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/graph-tool/2.x.x.nix b/pkgs/development/python-modules/graph-tool/2.x.x.nix
index d58ec269054..4b0e665de09 100644
--- a/pkgs/development/python-modules/graph-tool/2.x.x.nix
+++ b/pkgs/development/python-modules/graph-tool/2.x.x.nix
@@ -3,6 +3,8 @@
 , gobject-introspection, pygobject3, gtk3, matplotlib, ncurses
 , buildPythonPackage
 , fetchpatch
+, pythonAtLeast
+, lib
 }:
 
 buildPythonPackage rec {
@@ -29,7 +31,14 @@ buildPythonPackage rec {
       url = "https://git.skewed.de/count0/graph-tool/commit/aa39e4a6b42d43fac30c841d176c75aff92cc01a.patch";
       sha256 = "1578inb4jqwq2fhhwscn5z95nzmaxvmvk30nzs5wirr26iznap4m";
     })
-  ];
+  ] ++ (lib.optionals (pythonAtLeast "3.7") [
+    # # python 3.7 compatibility (`async` is now reserved)
+    (fetchpatch {
+      name = "async-reserved.patch";
+      url = "https://git.skewed.de/count0/graph-tool/commit/0407f41a35b6be7c670927fb5dc578cbd0e88be4.patch";
+      sha256 = "1fklznhmfvbb3ykwzyf8p2hiczby6y7r0xnkkjl2jkxlvr24000q";
+    })
+  ]);
 
   configureFlags = [
     "--with-python-module-path=$(out)/${python.sitePackages}"