bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
89 lines
1.8 KiB
Nix
89 lines
1.8 KiB
Nix
{
|
|
lib,
|
|
aiohttp,
|
|
buildPythonPackage,
|
|
certifi,
|
|
fetchFromGitHub,
|
|
mock,
|
|
opentelemetry-api,
|
|
opentelemetry-sdk,
|
|
orjson,
|
|
pytest-asyncio,
|
|
pytest-httpserver,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
requests,
|
|
respx,
|
|
setuptools,
|
|
trustme,
|
|
urllib3,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "elastic-transport";
|
|
version = "8.13.1";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "elastic";
|
|
repo = "elastic-transport-python";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-zxx5BvqQf5ipaOANKpThWUTsfhDkNMJqUejAWH68wpo=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.cfg \
|
|
--replace " --cov-report=term-missing --cov=elastic_transport" ""
|
|
'';
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
propagatedBuildInputs = [
|
|
urllib3
|
|
certifi
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
aiohttp
|
|
mock
|
|
opentelemetry-api
|
|
opentelemetry-sdk
|
|
orjson
|
|
pytest-asyncio
|
|
pytest-httpserver
|
|
pytestCheckHook
|
|
requests
|
|
respx
|
|
trustme
|
|
];
|
|
|
|
pythonImportsCheck = [ "elastic_transport" ];
|
|
|
|
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"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Transport classes and utilities shared among Python Elastic client libraries";
|
|
homepage = "https://github.com/elasticsearch/elastic-transport-python";
|
|
changelog = "https://github.com/elastic/elastic-transport-python/releases/tag/v${version}";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|