about summary refs log tree commit diff
path: root/pkgs/development/python-modules/cassandra-driver
diff options
context:
space:
mode:
authorRobert Scott <code@humanleg.org.uk>2021-08-10 22:54:55 +0100
committerRobert Scott <code@humanleg.org.uk>2021-08-10 22:55:20 +0100
commit0bd7db7d6211c5a6b481efbcaa5567bcc0bd75e9 (patch)
tree6d3bcacab4ccd9a02f69e0fff79932c6266978f4 /pkgs/development/python-modules/cassandra-driver
parentebc72941f0d47625a03bac63f4b0ae55a356a849 (diff)
python3Packages.cassandra-driver: relax geomet version constraint
also disable a time-sensitive test which is annoying on a loaded
machine
Diffstat (limited to 'pkgs/development/python-modules/cassandra-driver')
-rw-r--r--pkgs/development/python-modules/cassandra-driver/default.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/cassandra-driver/default.nix b/pkgs/development/python-modules/cassandra-driver/default.nix
index e5b1a4c4fb0fe..1243aad64cc4d 100644
--- a/pkgs/development/python-modules/cassandra-driver/default.nix
+++ b/pkgs/development/python-modules/cassandra-driver/default.nix
@@ -35,6 +35,10 @@ buildPythonPackage rec {
     sha256 = "1dn7iiavsrhh6i9hcyw0mk8j95r5ym0gbrvdca998hx2rnz5ark6";
   };
 
+  postPatch = ''
+    substituteInPlace setup.py --replace 'geomet>=0.1,<0.3' 'geomet'
+  '';
+
   nativeBuildInputs = [ cython ];
   buildInputs = [ libev ];
   propagatedBuildInputs = [ six geomet ]
@@ -80,6 +84,8 @@ buildPythonPackage rec {
     "_PoolTests"
     # attempts to make connection to localhost
     "test_connection_initialization"
+    # time-sensitive
+    "test_nts_token_performance"
   ];
 
   meta = with lib; {