11 buildPythonPackage rec {
12 pname = "elasticsearch-dsl";
16 inherit pname version;
17 sha256 = "0ed75f6ff037e36b2397a8e92cae0ddde79b83adc70a154b8946064cb62f7301";
20 propagatedBuildInputs = [ elasticsearch python-dateutil six ]
21 ++ lib.optional (!isPy3k) ipaddress;
23 # ImportError: No module named test_elasticsearch_dsl
24 # Tests require a local instance of elasticsearch
28 description = "High level Python client for Elasticsearch";
30 Elasticsearch DSL is a high-level library whose aim is to help with
31 writing and running queries against Elasticsearch. It is built on top of
32 the official low-level client (elasticsearch-py).
34 homepage = "https://github.com/elasticsearch/elasticsearch-dsl-py";
35 license = licenses.asl20;
36 maintainers = with maintainers; [ desiderius ];