3
0
Fork 0
forked from mirrors/nixpkgs

pythonPackages.cassandra-driver: fix build

This commit is contained in:
Frederik Rietdijk 2016-09-19 13:03:31 +02:00
parent d7d85186a7
commit b81a521ae9

View file

@ -3198,18 +3198,26 @@ in modules // {
sha256 = "1aqmy3psn12lxgp659d0zsxkirxzy5lnbnzxf9xjq1a93s3qm704";
};
propagatedBuildInputs = with self; [
futures
nose
six
sure
pytz
pyyaml
];
buildInputs = with self; [ pkgs.libev cython ] ++ optionals doCheck [ scales eventlet twisted mock gevent nose pytz pyyaml sure ];
propagatedBuildInputs = with self; [ futures six ];
postPatch = ''
sed -i "s/<=1.0.1//" setup.py
'';
checkPhase = ''
${python.interpreter} setup.py gevent_nosetests
${python.interpreter} setup.py eventlet_nosetests
'';
# Could not get tests running
doCheck = false;
meta = {
homepage = http://datastax.github.io/python-driver/;
description = "A Python client driver for Apache Cassandra";
license = licenses.asl20;
};
};