1{ lib,
2 fetchPypi,
3 requests,
4 buildPythonPackage
5}:
6
7buildPythonPackage rec {
8 pname = "braintree";
9 version = "4.3.0";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "d2b5ead45dbfe98b6099d387c7f12b7d2994ae0efb60679e6bb0929a06027e16";
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 = [ maintainers.ivegotasthma ];
26 };
27}