nixpkgs/pkgs/development/python-modules/elasticsearch/default.nix
2018-04-08 11:34:54 +02:00

30 lines
818 B
Nix

{ buildPythonPackage
, fetchPypi
, urllib3, requests
, nosexcover, mock
, stdenv
}:
buildPythonPackage (rec {
pname = "elasticsearch";
version = "6.2.0";
src = fetchPypi {
inherit pname version;
sha256 = "b106fa3e01750376a42f8a9882bd84d630fda58c7aba38b4fec797d11c0bd0a2";
};
# Check is disabled because running them destroy the content of the local cluster!
# https://github.com/elasticsearch/elasticsearch-py/tree/master/test_elasticsearch
doCheck = false;
propagatedBuildInputs = [ urllib3 requests ];
buildInputs = [ nosexcover mock ];
meta = with stdenv.lib; {
description = "Official low-level client for Elasticsearch";
homepage = https://github.com/elasticsearch/elasticsearch-py;
license = licenses.asl20;
maintainers = with maintainers; [ desiderius ];
};
})