Files
nixpkgs/pkgs/development/python-modules/elastic-transport/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

101 lines
2.1 KiB
Nix

{
lib,
aiohttp,
buildPythonPackage,
certifi,
fetchFromGitHub,
fetchpatch,
mock,
opentelemetry-api,
opentelemetry-sdk,
orjson,
pytest-asyncio,
pytest-cov-stub,
pytest-httpserver,
pytestCheckHook,
pythonOlder,
requests,
respx,
setuptools,
trustme,
urllib3,
}:
buildPythonPackage rec {
pname = "elastic-transport";
version = "8.17.1";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "elastic";
repo = "elastic-transport-python";
tag = "v${version}";
hash = "sha256-LWSvE88wEwMxRi6IZsMkIRP8UTRfImC9QZnuka1oiso=";
};
# FIXME: backport fix for pytest-asyncio 1.2.0, as updating this entire ecosystem is painful
patches = [
(fetchpatch {
url = "https://github.com/elastic/elastic-transport-python/commit/d749d0be54821e81979888ff34b1451354548863.patch";
hash = "sha256-FrabqeLn3Sr1sg/lWWYsMPd0CZS/6BZYLnaK66T93BQ=";
})
];
build-system = [ setuptools ];
dependencies = [
urllib3
certifi
];
nativeCheckInputs = [
aiohttp
mock
opentelemetry-api
opentelemetry-sdk
orjson
pytest-asyncio
pytest-cov-stub
pytest-httpserver
pytestCheckHook
requests
respx
trustme
];
pythonImportsCheck = [ "elastic_transport" ];
pytestFlags = [
"-Wignore::DeprecationWarning"
];
disabledTests = [
# Tests require network access
"fingerprint"
"ssl"
"test_custom_headers"
"test_custom_user_agent"
"test_default_headers"
"test_head"
"tls"
"test_simple_request"
"test_node"
"test_debug_logging"
"test_debug_logging_uncompressed_body"
"test_debug_logging_no_body"
"test_httpbin"
"test_sniffed_nodes_added_to_pool"
"test_async_transport_httpbin"
];
meta = {
description = "Transport classes and utilities shared among Python Elastic client libraries";
homepage = "https://github.com/elastic/elastic-transport-python";
changelog = "https://github.com/elastic/elastic-transport-python/releases/tag/${src.tag}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
}