3
0
Fork 0
forked from mirrors/nixpkgs
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-10-24 07:47:25 +01:00
version = "2.4.2";
2017-12-30 17:11:19 +00:00
src = fetchPypi {
inherit pname version;
2019-10-24 07:47:25 +01:00
sha256 = "ce4adb60fe67ebe91f2fc57d5067b4e44df6e233652987be4fb2e549688cf9fe";
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;
}