Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 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.3.0"; 14 15 src = fetchPypi { 16 inherit pname version; 17 sha256 = "bb74e1cc2388bd29c45e2e3eb31d0416d0f53d83baafca7b72ca9c945a2e249a"; 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}