Merge pull request #55686 from eonpatapon/cassandra-driver-3.16

pythonPackages.cassandra-driver: 3.15.1 -> 3.16.0 - fix build
This commit is contained in:
lewo 2019-02-16 01:03:44 +01:00 committed by GitHub
commit 87a8d1a3df
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,14 +20,26 @@
buildPythonPackage rec {
pname = "cassandra-driver";
version = "3.15.1";
version = "3.16.0";
src = fetchPypi {
inherit pname version;
sha256 = "1xcirbvlj00id8269akhk8gy2sv0mlnbgy3nagi32648jwsrcadg";
sha256 = "1gjs2lqy0ba6zhh13a1dhirk59i7lc4zcbl7h50619hdm5kv3g22";
};
buildInputs = [ pkgs.libev cython ];
buildInputs = [
pkgs.libev
# NOTE: next version will work with cython 0.29
# Requires 'Cython!=0.25,<0.29,>=0.20'
(cython.overridePythonAttrs(old: rec {
pname = "Cython";
version = "0.28.3";
src = fetchPypi {
inherit pname version;
sha256 = "1aae6d6e9858888144cea147eb5e677830f45faaff3d305d77378c3cba55f526";
};
}))
];
propagatedBuildInputs = [ six ]
++ stdenv.lib.optionals (pythonOlder "3.4") [ futures ];