1{ lib,
2 fetchPypi,
3 requests,
4 buildPythonPackage
5}:
6
7buildPythonPackage rec {
8 pname = "braintree";
9 version = "3.58.0";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "0n8k9m3kifj34rzi2a3jgjsik91w8z32xaaxcmvqs7x8m5m3kjj4";
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}