Skip to content

Commit

Permalink
pythonPackages.pycassa: init at 1.11.2
Browse files Browse the repository at this point in the history
fixes #23920
  • Loading branch information
nlewo authored and Mic92 committed Mar 16, 2017
1 parent 9ae51de commit f28fe4c
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
26 changes: 26 additions & 0 deletions pkgs/development/python-modules/pycassa/default.nix
@@ -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;
};
}
4 changes: 3 additions & 1 deletion pkgs/top-level/python-packages.nix
Expand Up @@ -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}";
Expand Down

0 comments on commit f28fe4c

Please sign in to comment.