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

31 lines
583 B
Nix
Raw Normal View History

2017-12-30 18:11:19 +01:00
{ lib
, buildPythonPackage
, fetchPypi
, jsonpickle
, wrapt
, requests
2018-04-04 20:01:53 +02:00
, future
2018-11-24 14:16:22 +01:00
, botocore
2017-12-30 18:11:19 +01:00
}:
buildPythonPackage rec {
pname = "aws-xray-sdk";
2019-10-24 08:47:25 +02:00
version = "2.4.2";
2017-12-30 18:11:19 +01:00
src = fetchPypi {
inherit pname version;
2019-10-24 08:47:25 +02:00
sha256 = "ce4adb60fe67ebe91f2fc57d5067b4e44df6e233652987be4fb2e549688cf9fe";
2017-12-30 18:11:19 +01:00
};
propagatedBuildInputs = [
2018-11-24 14:16:22 +01:00
jsonpickle wrapt requests future botocore
2017-12-30 18:11:19 +01: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;
}