depot/third_party/nixpkgs/pkgs/development/python-modules/elasticsearch-dsl/default.nix
Default email 60f07311b9 Project import generated by Copybara.
GitOrigin-RevId: f8e2ebd66d097614d51a56a755450d4ae1632df1
2024-02-06 17:22:34 -08:00

36 lines
990 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, elasticsearch
, python-dateutil
, six
}:
buildPythonPackage rec {
pname = "elasticsearch-dsl";
version = "8.12.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-zjK4UpiIqXvpEVMedZCBbPOx9ggmPv9vt1qnEG4jPIg=";
};
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 ];
};
}