1 { lib, buildPythonPackage, fetchPypi, requests, pytest }:
3 buildPythonPackage rec {
5 pname = "plaid-python";
9 sha256 = "bd599b384f94d8883344925f0ef223e1ab50f218872434aa40ba8c645937699c";
12 checkInputs = [ pytest ];
14 # Integration tests require API keys and internet access
15 checkPhase = "py.test -rxs ./tests/unit";
17 propagatedBuildInputs = [ requests ];
20 description = "Python client library for the Plaid API and Link";
21 homepage = "https://github.com/plaid/plaid-python";
22 changelog = "https://github.com/plaid/plaid-python/blob/master/CHANGELOG.md";
23 license = lib.licenses.mit;
24 maintainers = with lib.maintainers; [ bhipple ];