23 buildPythonPackage rec {
24 pname = "aws-xray-sdk";
28 disabled = pythonOlder "3.7";
30 src = fetchFromGitHub {
32 repo = "aws-xray-sdk-python";
33 rev = "refs/tags/${version}";
34 hash = "sha256-KhYYzeOteQxS1ltEUbjsDriHXO0Kom9YiCvVhSNvXVQ=";
41 propagatedBuildInputs = [
46 ] ++ lib.optionals (pythonOlder "3.8") [
64 # This reduces the amount of dependencies
66 # We don't care about benchmarks
67 "tests/test_local_sampling_benchmark.py"
68 "tests/test_patcher.py"
71 pythonImportsCheck = [
76 description = "AWS X-Ray SDK for the Python programming language";
77 homepage = "https://github.com/aws/aws-xray-sdk-python";
78 changelog = "https://github.com/aws/aws-xray-sdk-python/blob/${version}/CHANGELOG.rst";
79 license = licenses.asl20;
80 maintainers = with maintainers; [ ];