about summary refs log tree commit diff
path: root/pkgs/development/python-modules/aws-xray-sdk/default.nix
blob: dae88b34900e5184e3fc14a569f8c2c3b5ab1a0e (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
{ lib
, buildPythonPackage
, fetchPypi
, jsonpickle
, wrapt
, requests
}:

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "9e7ba8dd08fd2939376c21423376206bff01d0deaea7d7721c6b35921fed1943";
  };

  propagatedBuildInputs = [
    jsonpickle wrapt requests
  ];

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