nixpkgs/pkgs/development/python-modules/aws-xray-sdk/default.nix

31 lines
583 B
Nix
Raw Normal View History

2017-12-30 17:11:19 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, jsonpickle
, wrapt
, requests
2018-04-04 19:01:53 +01:00
, future
2018-11-24 13:16:22 +00:00
, botocore
2017-12-30 17:11:19 +00:00
}:
buildPythonPackage rec {
pname = "aws-xray-sdk";
2019-02-14 07:37:11 +00:00
version = "2.3.0";
2017-12-30 17:11:19 +00:00
src = fetchPypi {
inherit pname version;
2019-02-14 07:37:11 +00:00
sha256 = "bb74e1cc2388bd29c45e2e3eb31d0416d0f53d83baafca7b72ca9c945a2e249a";
2017-12-30 17:11:19 +00:00
};
propagatedBuildInputs = [
2018-11-24 13:16:22 +00:00
jsonpickle wrapt requests future botocore
2017-12-30 17:11:19 +00:00
];
meta = {
description = "AWS X-Ray SDK for the Python programming language";
license = lib.licenses.asl20;
homepage = https://github.com/aws/aws-xray-sdk-python;
};
doCheck = false;
}