Merge pull request #10701 from dtulig/master

pyelasticsearch: init at 1.4
This commit is contained in:
Domen Kožar 2015-10-30 08:48:02 +01:00
commit d52a1b3ce6

View file

@ -13162,6 +13162,23 @@ let
};
};
pyelasticsearch = buildPythonPackage (rec {
name = "pyelasticsearch-1.4";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/p/pyelasticsearch/${name}.tar.gz";
sha256 = "18wp6llfjv6hvyhr3f6i8dm9wc5rf46wiqsfxwpvnf6mdrvk6xr7";
};
# Tests require a local instance of elasticsearch
doCheck = false;
meta = {
description = "A clean, future-proof, high-scale API to elasticsearch.";
homepage = https://pyelasticsearch.readthedocs.org;
license = licenses.bsd3;
};
});
pyenchant = pythonPackages.buildPythonPackage rec {
name = "pyenchant-1.6.6";