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

41 lines
1,012 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
elasticsearch,
python-dateutil,
six,
}:
buildPythonPackage rec {
pname = "elasticsearch-dsl";
version = "8.13.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-FTMFODQZp+5hulOG9P4iueIHMnmv75c01bWfXKtoL3o=";
};
propagatedBuildInputs = [
elasticsearch
python-dateutil
six
];
# ImportError: No module named test_elasticsearch_dsl
# Tests require a local instance of elasticsearch
doCheck = false;
meta = with 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).
'';
homepage = "https://github.com/elasticsearch/elasticsearch-dsl-py";
license = licenses.asl20;
maintainers = with maintainers; [ desiderius ];
};
}