summary refs log tree commit diff
path: root/pkgs/development/python-modules/pycassa/default.nix
blob: fc8fbcaa8d2d5e2d37aecc26b6b962fb47a2238a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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 = "A python client library for Apache Cassandra";
    homepage = http://github.com/pycassa/pycassa;
    license = stdenv.lib.licenses.mit;
  };
}