pythonPackages.pycassa: init at 1.11.2

fixes #23920
This commit is contained in:
Antoine Eiche 2017-03-15 14:50:16 +01:00 committed by Jörg Thalheim
parent 9ae51deffa
commit f28fe4cfae
No known key found for this signature in database
GPG Key ID: CA4106B8D7CC79FA
2 changed files with 29 additions and 1 deletions

View File

@ -0,0 +1,26 @@
{ stdenv, buildPythonPackage, fetchPypi, thrift, isPy3k }:
buildPythonPackage rec {
pname = "pycassa";
version = "1.11.2";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "1nsqjzgn6v0rya60dihvbnrnq1zwaxl2qwf0sr08q9qlkr334hr6";
};
disabled = isPy3k;
# Tests are not executed since they require a cassandra up and
# running
doCheck = false;
propagatedBuildInputs = [ thrift ];
meta = {
description = "pycassa is a python client library for Apache Cassandra";
homepage = http://github.com/pycassa/pycassa;
license = stdenv.licenses.mit;
};
}

View File

@ -9022,7 +9022,9 @@ in {
};
};
pybluez = buildPythonPackage rec {
pycassa = callPackage ../development/python-modules/pycassa { };
pybluez = buildPythonPackage rec {
version = "unstable-20160819";
pname = "pybluez";
name = "${pname}-${version}";