pythonPackages.pycassa: init at 1.11.2

fixes #23920

authored by Antoine Eiche and committed by Jörg Thalheim f28fe4cf 9ae51def

+29 -1
+26
pkgs/development/python-modules/pycassa/default.nix
··· 1 + { stdenv, buildPythonPackage, fetchPypi, thrift, isPy3k }: 2 + 3 + buildPythonPackage rec { 4 + pname = "pycassa"; 5 + version = "1.11.2"; 6 + name = "${pname}-${version}"; 7 + 8 + src = fetchPypi { 9 + inherit pname version; 10 + sha256 = "1nsqjzgn6v0rya60dihvbnrnq1zwaxl2qwf0sr08q9qlkr334hr6"; 11 + }; 12 + 13 + disabled = isPy3k; 14 + 15 + # Tests are not executed since they require a cassandra up and 16 + # running 17 + doCheck = false; 18 + 19 + propagatedBuildInputs = [ thrift ]; 20 + 21 + meta = { 22 + description = "pycassa is a python client library for Apache Cassandra"; 23 + homepage = http://github.com/pycassa/pycassa; 24 + license = stdenv.licenses.mit; 25 + }; 26 + }
+3 -1
pkgs/top-level/python-packages.nix
··· 9022 9022 }; 9023 9023 }; 9024 9024 9025 - pybluez = buildPythonPackage rec { 9025 + pycassa = callPackage ../development/python-modules/pycassa { }; 9026 + 9027 + pybluez = buildPythonPackage rec { 9026 9028 version = "unstable-20160819"; 9027 9029 pname = "pybluez"; 9028 9030 name = "${pname}-${version}";