nixpkgs/pkgs/development/python-modules/elasticsearch/default.nix
2019-06-15 08:44:04 +02:00

30 lines
818 B
Nix

{ buildPythonPackage
, fetchPypi
, urllib3, requests
, nosexcover, mock
, stdenv
}:
buildPythonPackage (rec {
pname = "elasticsearch";
version = "7.0.2";
src = fetchPypi {
inherit pname version;
sha256 = "cbc73831c63fa2824538df76fcb2c4be007b43dbd9e7788ae70ea6d24109925b";
};
# 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 ];
};
})