c7f94ff3ce
GitOrigin-RevId: b85ed9dcbf187b909ef7964774f8847d554fab3b
78 lines
1.4 KiB
Nix
78 lines
1.4 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, certifi
|
|
, click
|
|
, elastic-transport
|
|
, elasticsearch8
|
|
, fetchFromGitHub
|
|
, hatchling
|
|
, mock
|
|
, pytest-asyncio
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, pythonRelaxDepsHook
|
|
, pyyaml
|
|
, requests
|
|
, six
|
|
, voluptuous
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "es-client";
|
|
version = "8.9.0";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "untergeek";
|
|
repo = "es_client";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-pzCjVkZ/NmHSe6X8dNH1YvjTu3njQaJe4CuguqrJNs8=";
|
|
};
|
|
|
|
pythonRelaxDeps = true;
|
|
|
|
nativeBuildInputs = [
|
|
hatchling
|
|
pythonRelaxDepsHook
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
certifi
|
|
click
|
|
elastic-transport
|
|
elasticsearch8
|
|
pyyaml
|
|
six
|
|
voluptuous
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
mock
|
|
pytest-asyncio
|
|
pytestCheckHook
|
|
requests
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"es_client"
|
|
];
|
|
|
|
disabledTests = [
|
|
# Tests require network access
|
|
"test_bad_version_raises"
|
|
"test_client_info"
|
|
"test_multiple_hosts_raises"
|
|
"test_non_dict_passed"
|
|
"test_skip_version_check"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Module for building Elasticsearch client objects";
|
|
homepage = "https://github.com/untergeek/es_client";
|
|
changelog = "https://github.com/untergeek/es_client/releases/tag/v${version}";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|