12 buildPythonPackage rec {
13 pname = "elasticsearch-dsl";
17 disabled = pythonOlder "3.8";
20 pname = "elasticsearch_dsl";
22 hash = "sha256-Bb1QUO730HBqRIfNIoZNPBWMjhy8omtT7xpHO97hNFk=";
25 build-system = [ setuptools ];
33 optional-dependencies = {
34 async = [ elasticsearch ] ++ elasticsearch.optional-dependencies.async;
37 # ImportError: No module named test_elasticsearch_dsl
38 # Tests require a local instance of elasticsearch
42 description = "High level Python client for Elasticsearch";
44 Elasticsearch DSL is a high-level library whose aim is to help with
45 writing and running queries against Elasticsearch. It is built on top of
46 the official low-level client (elasticsearch-py).
48 homepage = "https://github.com/elasticsearch/elasticsearch-dsl-py";
49 changelog = "https://github.com/elastic/elasticsearch-dsl-py/blob/v${version}/Changelog.rst";
50 license = licenses.asl20;
51 maintainers = with maintainers; [ desiderius ];