depot/third_party/nixpkgs/pkgs/development/python-modules/elasticsearch/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

50 lines
1.1 KiB
Nix

{
lib,
aiohttp,
buildPythonPackage,
certifi,
elastic-transport,
fetchPypi,
pythonOlder,
requests,
urllib3,
}:
buildPythonPackage rec {
pname = "elasticsearch";
version = "8.13.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-5Ovrsi0J8O+DnCa2qpjhnM1ja8t38IwStWKwLKzV50Q=";
};
nativeBuildInputs = [ elastic-transport ];
propagatedBuildInputs = [
urllib3
certifi
];
passthru.optional-dependencies = {
requests = [ requests ];
async = [ aiohttp ];
};
pythonImportsCheck = [ "elasticsearch" ];
# 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;
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; [ desiderius ];
};
}