2018-01-12 10:07:46 +01:00
|
|
|
{ buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, urllib3, requests
|
|
|
|
, nosexcover, mock
|
2021-01-25 09:26:54 +01:00
|
|
|
, lib
|
2018-01-12 10:07:46 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage (rec {
|
|
|
|
pname = "elasticsearch";
|
2021-09-09 12:30:41 +02:00
|
|
|
# In 7.14.0, the package was intentionally made incompatible with
|
|
|
|
# the OSS version of elasticsearch - don't update past 7.13.x until
|
|
|
|
# there's a clear path forward. See
|
|
|
|
# https://github.com/elastic/elasticsearch-py/issues/1639 for more
|
|
|
|
# info.
|
2022-01-13 16:58:18 -08:00
|
|
|
version = "7.16.3";
|
2018-01-12 10:07:46 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2022-01-13 16:58:18 -08:00
|
|
|
sha256 = "8adf8bc351ed55df7296be1009d38a1c999c0abc7d8700fa88533f1ad6087c5e";
|
2018-01-12 10:07:46 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
# 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 ];
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2018-01-12 10:07:46 +01:00
|
|
|
description = "Official low-level client for Elasticsearch";
|
2020-03-31 21:11:51 -04:00
|
|
|
homepage = "https://github.com/elasticsearch/elasticsearch-py";
|
2018-01-12 10:07:46 +01:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ desiderius ];
|
|
|
|
};
|
|
|
|
})
|