python310Packages.elastisearch8: init at 8.7.0
This commit is contained in:
parent
5b0c597807
commit
c135b649f6
2 changed files with 54 additions and 0 deletions
52
pkgs/development/python-modules/elasticsearch8/default.nix
Normal file
52
pkgs/development/python-modules/elasticsearch8/default.nix
Normal file
|
@ -0,0 +1,52 @@
|
|||
{ lib
|
||||
, aiohttp
|
||||
, buildPythonPackage
|
||||
, elastic-transport
|
||||
, fetchPypi
|
||||
, pythonOlder
|
||||
, requests
|
||||
, urllib3
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "elasticsearch8";
|
||||
version = "8.7.0";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-mRy48OYsm+0M1/D+abs83RiqN8wQr/Z6SZUY4TNg190=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
elastic-transport
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
requests
|
||||
];
|
||||
|
||||
passthru.optional-dependencies = {
|
||||
async = [
|
||||
aiohttp
|
||||
];
|
||||
};
|
||||
|
||||
# Check is disabled because running them destroy the content of the local cluster!
|
||||
# https://github.com/elasticsearch/elasticsearch-py/tree/main/test_elasticsearch
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"elasticsearch8"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Official low-level client for Elasticsearch";
|
||||
homepage = "https://github.com/elasticsearch/elasticsearch-py";
|
||||
changelog = "https://github.com/elastic/elasticsearch-py/releases/tag/v${version}";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -3050,6 +3050,8 @@ self: super: with self; {
|
|||
|
||||
elasticsearch = callPackage ../development/python-modules/elasticsearch { };
|
||||
|
||||
elasticsearch8 = callPackage ../development/python-modules/elasticsearch8 { };
|
||||
|
||||
elasticsearch-dsl = callPackage ../development/python-modules/elasticsearch-dsl { };
|
||||
|
||||
elasticsearchdsl = self.elasticsearch-dsl;
|
||||
|
|
Loading…
Reference in a new issue