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