2023-04-29 23:31:33 +02:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
aiohttp,
|
|
|
|
buildPythonPackage,
|
|
|
|
elastic-transport,
|
|
|
|
fetchPypi,
|
|
|
|
pythonOlder,
|
|
|
|
requests,
|
|
|
|
urllib3,
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "elasticsearch8";
|
2024-05-23 00:47:28 +02:00
|
|
|
version = "8.13.1";
|
2023-04-29 23:31:33 +02:00
|
|
|
format = "setuptools";
|
|
|
|
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2024-05-23 00:47:28 +02:00
|
|
|
hash = "sha256-jVi5yYPll7ej8lmDEbvcLCEdBbpMiZUi2n4AORre81E=";
|
2023-04-29 23:31:33 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ elastic-transport ];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ requests ];
|
|
|
|
|
|
|
|
passthru.optional-dependencies = {
|
|
|
|
async = [ aiohttp ];
|
|
|
|
};
|
|
|
|
|
|
|
|
# Check is disabled because running them destroy the content of the local cluster!
|
|
|
|
# https://github.com/elasticsearch/elasticsearch-py/tree/main/test_elasticsearch
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "elasticsearch8" ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Official low-level client for Elasticsearch";
|
|
|
|
homepage = "https://github.com/elasticsearch/elasticsearch-py";
|
|
|
|
changelog = "https://github.com/elastic/elasticsearch-py/releases/tag/v${version}";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ fab ];
|
|
|
|
};
|
|
|
|
}
|