2018-09-24 19:07:30 +02:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, isPy3k
|
|
|
|
, elasticsearch
|
|
|
|
, ipaddress
|
|
|
|
, python-dateutil
|
|
|
|
, six
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "elasticsearch-dsl";
|
2020-06-05 19:44:34 +02:00
|
|
|
version = "7.2.1";
|
2018-09-24 19:07:30 +02:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-06-05 19:44:34 +02:00
|
|
|
sha256 = "1e345535164cb684de4b825e1d0daf81b75554b30d3905446584a9e4af0cc3e7";
|
2018-09-24 19:07:30 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ elasticsearch python-dateutil six ]
|
|
|
|
++ stdenv.lib.optional (!isPy3k) ipaddress;
|
|
|
|
|
|
|
|
# ImportError: No module named test_elasticsearch_dsl
|
|
|
|
# Tests require a local instance of elasticsearch
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "High level Python client for Elasticsearch";
|
|
|
|
longDescription = ''
|
|
|
|
Elasticsearch DSL is a high-level library whose aim is to help with
|
|
|
|
writing and running queries against Elasticsearch. It is built on top of
|
|
|
|
the official low-level client (elasticsearch-py).
|
|
|
|
'';
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/elasticsearch/elasticsearch-dsl-py";
|
2018-09-24 19:07:30 +02:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ desiderius ];
|
|
|
|
};
|
|
|
|
}
|