1{ lib,
2 fetchPypi,
3 requests,
4 buildPythonPackage
5}:
6
7buildPythonPackage rec {
8 pname = "braintree";
9 version = "4.13.0";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "de8270c24c4557bcb76d2079bb4cabf380ce467d17c65f10ee5159da7ff8496a";
14 };
15
16 propagatedBuildInputs = [ requests ];
17
18 # pypi release does not include tests
19 doCheck = false;
20
21 meta = with lib; {
22 description = "Python library for integration with Braintree";
23 homepage = "https://github.com/braintree/braintree_python";
24 license = licenses.mit;
25 maintainers = with maintainers; [ ];
26 };
27}