1{ lib
2, buildPythonPackage
3, fetchPypi
4, nulltype
5, python-dateutil
6, urllib3
7}:
8
9buildPythonPackage rec {
10 pname = "plaid-python";
11 version = "8.6.0";
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "da3570fedbc096aa058affa72fc71905401b373a5b0d28b7c27e7af7998859d9";
16 };
17
18 propagatedBuildInputs = [
19 nulltype
20 python-dateutil
21 urllib3
22 ];
23
24 # Tests require a Client IP
25 doCheck = false;
26
27 pythonImportsCheck = [
28 "plaid"
29 ];
30
31 meta = with lib; {
32 description = "Python client library for the Plaid API and Link";
33 homepage = "https://github.com/plaid/plaid-python";
34 changelog = "https://github.com/plaid/plaid-python/blob/master/CHANGELOG.md";
35 license = licenses.mit;
36 maintainers = with maintainers; [ bhipple ];
37 };
38}