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