about summary refs log tree commit diff
path: root/pkgs/development/python-modules/cassandra-driver
diff options
context:
space:
mode:
authorDrew Risinger <drewrisinger@users.noreply.github.com>2021-05-03 15:11:27 -0400
committerDrew Risinger <drewrisinger@users.noreply.github.com>2021-05-11 00:08:10 -0400
commitbf8c530542d1aed0e59887888476c4c79234e734 (patch)
tree17dcca3de47611fbd988c76a3f626cafdf853cbd /pkgs/development/python-modules/cassandra-driver
parent7c6b8698e3db8f3c2d1e455de8b32b0e0f0c5373 (diff)
python3Packages.cassandra-driver: 3.24.0 -> 3.25.0
Remove unused python argument.
Diffstat (limited to 'pkgs/development/python-modules/cassandra-driver')
-rw-r--r--pkgs/development/python-modules/cassandra-driver/default.nix14
1 files changed, 10 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/cassandra-driver/default.nix b/pkgs/development/python-modules/cassandra-driver/default.nix
index 16479302221b8..e5b1a4c4fb0fe 100644
--- a/pkgs/development/python-modules/cassandra-driver/default.nix
+++ b/pkgs/development/python-modules/cassandra-driver/default.nix
@@ -1,4 +1,8 @@
-{ stdenv, lib, buildPythonPackage, fetchFromGitHub, python, pythonOlder
+{ stdenv
+, lib
+, buildPythonPackage
+, fetchFromGitHub
+, pythonOlder
 , cython
 , eventlet
 , futures ? null
@@ -21,14 +25,14 @@
 
 buildPythonPackage rec {
   pname = "cassandra-driver";
-  version = "3.24.0";
+  version = "3.25.0";
 
   # pypi tarball doesn't include tests
   src = fetchFromGitHub {
     owner = "datastax";
     repo = "python-driver";
     rev = version;
-    sha256 = "1rr69hly5q810xpn8rkzxwzlq55wxxp7kwki9vfri3gh674d2wip";
+    sha256 = "1dn7iiavsrhh6i9hcyw0mk8j95r5ym0gbrvdca998hx2rnz5ark6";
   };
 
   nativeBuildInputs = [ cython ];
@@ -66,8 +70,10 @@ buildPythonPackage rec {
 
   pytestFlagsArray = [
     "tests/unit"
+  ];
+  disabledTestPaths = [
     # requires puresasl
-    "--ignore=tests/unit/advanced/test_auth.py"
+    "tests/unit/advanced/test_auth.py"
   ];
   disabledTests = [
     # doesn't seem to be intended to be run directly