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