linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / elasticsearch-dsl / default.nix
bloba2f2ff038db097e3652c2a43fe49dc738d169a19
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , isPy3k
5 , elasticsearch
6 , ipaddress
7 , python-dateutil
8 , six
9 }:
11 buildPythonPackage rec {
12   pname = "elasticsearch-dsl";
13   version = "7.3.0";
15   src = fetchPypi {
16     inherit pname version;
17     sha256 = "0ed75f6ff037e36b2397a8e92cae0ddde79b83adc70a154b8946064cb62f7301";
18   };
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
25   doCheck = false;
27   meta = with lib; {
28     description = "High level Python client for Elasticsearch";
29     longDescription = ''
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).
33     '';
34     homepage = "https://github.com/elasticsearch/elasticsearch-dsl-py";
35     license = licenses.asl20;
36     maintainers = with maintainers; [ desiderius ];
37   };