Files
nixpkgs/pkgs/development/python-modules/es-client/default.nix
T
Martin Weinelt 7d15daf5ad python3Packages.es-client: 8.18.2 -> 9.0.2
https://github.com/untergeek/es_client/releases/tag/v9.0.2

This commit was automatically generated using update-python-libraries.
2026-02-01 16:43:43 +01:00

80 lines
1.5 KiB
Nix

{
lib,
buildPythonPackage,
certifi,
click,
cryptography,
dotmap,
ecs-logging,
elastic-transport,
elasticsearch8,
fetchFromGitHub,
hatchling,
mock,
pytest-asyncio,
pytestCheckHook,
pyyaml,
requests,
tiered-debug,
voluptuous,
}:
buildPythonPackage rec {
pname = "es-client";
version = "9.0.2";
pyproject = true;
src = fetchFromGitHub {
owner = "untergeek";
repo = "es_client";
tag = "v${version}";
hash = "sha256-83EBDmbZuOAVT2oYn98s6XTZrB38lx03nozAkBqHfgg=";
};
pythonRelaxDeps = true;
build-system = [ hatchling ];
dependencies = [
certifi
click
cryptography
dotmap
ecs-logging
elastic-transport
elasticsearch8
pyyaml
tiered-debug
voluptuous
];
nativeCheckInputs = [
mock
pytest-asyncio
pytestCheckHook
requests
];
pythonImportsCheck = [ "es_client" ];
disabledTests = [
# Tests require local Elasticsearch instance
"test_bad_version_raises"
"test_basic_operation"
"test_client_info"
"test_client_info"
"test_exit_if_not_master"
"test_multiple_hosts_raises"
"test_skip_version_check"
"TestCLIExample"
];
meta = {
description = "Module for building Elasticsearch client objects";
homepage = "https://github.com/untergeek/es_client";
changelog = "https://github.com/untergeek/es_client/releases/tag/${src.tag}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
}