Files
nixpkgs/pkgs/development/python-modules/aws-xray-sdk/default.nix
T
Martin Weinelt ae1c81df93 python3Packages.aws-xray-sdk: 2.14.0 -> 2.15.0
https://github.com/aws/aws-xray-sdk-python/blob/2.15.0/CHANGELOG.rst

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

76 lines
1.4 KiB
Nix

{
lib,
aiohttp,
botocore,
bottle,
buildPythonPackage,
django,
fetchFromGitHub,
httpx,
jsonpickle,
pymysql,
pytest-asyncio_0,
pynamodb,
pytestCheckHook,
requests,
setuptools,
sqlalchemy,
webtest,
wrapt,
}:
buildPythonPackage rec {
pname = "aws-xray-sdk";
version = "2.15.0";
pyproject = true;
src = fetchFromGitHub {
owner = "aws";
repo = "aws-xray-sdk-python";
tag = version;
hash = "sha256-Zu2+awB6Ynxp6hkY1bB1f6u+KpDvCcoGxDWanSH+yBY=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [
botocore
jsonpickle
requests
wrapt
];
nativeCheckInputs = [
aiohttp
bottle
django
httpx
pymysql
pynamodb
pytest-asyncio_0
pytestCheckHook
sqlalchemy
webtest
];
disabledTestPaths = [
# This reduces the amount of dependencies
"tests/ext/"
# We don't care about benchmarks
"tests/test_local_sampling_benchmark.py"
"tests/test_patcher.py"
# async def functions are not natively supported.
"tests/test_async_recorder.py"
];
pythonImportsCheck = [ "aws_xray_sdk" ];
meta = {
description = "AWS X-Ray SDK for the Python programming language";
homepage = "https://github.com/aws/aws-xray-sdk-python";
changelog = "https://github.com/aws/aws-xray-sdk-python/blob/${src.tag}/CHANGELOG.rst";
license = lib.licenses.asl20;
maintainers = [ ];
};
}