Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 31 lines 583 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, jsonpickle 5, wrapt 6, requests 7, future 8, botocore 9}: 10 11buildPythonPackage rec { 12 pname = "aws-xray-sdk"; 13 version = "2.4.3"; 14 15 src = fetchPypi { 16 inherit pname version; 17 sha256 = "263a38f3920d9dc625e3acb92e6f6d300f4250b70f538bd009ce6e485676ab74"; 18 }; 19 20 propagatedBuildInputs = [ 21 jsonpickle wrapt requests future botocore 22 ]; 23 24 meta = { 25 description = "AWS X-Ray SDK for the Python programming language"; 26 license = lib.licenses.asl20; 27 homepage = https://github.com/aws/aws-xray-sdk-python; 28 }; 29 30 doCheck = false; 31}