summary refs log tree commit diff
path: root/pkgs/development/python-modules/aws-xray-sdk/default.nix
blob: a16f6c7415f2cc3297438261ad1a68b6bb3688d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ lib
, buildPythonPackage
, fetchPypi
, jsonpickle
, wrapt
, requests
, future
}:

buildPythonPackage rec {
  pname = "aws-xray-sdk";
  version = "1.1.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "8ec3c6c82e76c03799ec209ed59642d78f62218db6a430f7e2d20491cac3c5ef";
  };

  propagatedBuildInputs = [
    jsonpickle wrapt requests future
  ];

  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;
}