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