Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python3Packages.cassandra-driver: relax geomet version constraint

also disable a time-sensitive test which is annoying on a loaded
machine

+6
+6
pkgs/development/python-modules/cassandra-driver/default.nix
··· 35 35 sha256 = "1dn7iiavsrhh6i9hcyw0mk8j95r5ym0gbrvdca998hx2rnz5ark6"; 36 36 }; 37 37 38 + postPatch = '' 39 + substituteInPlace setup.py --replace 'geomet>=0.1,<0.3' 'geomet' 40 + ''; 41 + 38 42 nativeBuildInputs = [ cython ]; 39 43 buildInputs = [ libev ]; 40 44 propagatedBuildInputs = [ six geomet ] ··· 80 84 "_PoolTests" 81 85 # attempts to make connection to localhost 82 86 "test_connection_initialization" 87 + # time-sensitive 88 + "test_nts_token_performance" 83 89 ]; 84 90 85 91 meta = with lib; {