aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/plaid-python/default.nix
blob: a41265165c7dc757f2005463d62d0c8b45360293 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ lib, buildPythonPackage, fetchPypi, requests, pytest }:

buildPythonPackage rec {
  version = "3.4.0";
  pname = "plaid-python";

  src = fetchPypi {
    inherit pname version;
    sha256 = "bbfad84b8c827a14bc5b0ab93e1e5c7117908e5fa4cdecaa44a037298a20b7de";
  };

  checkInputs = [ pytest ];
  # Integration tests require API keys and internet access
  checkPhase = "py.test -rxs ./tests/unit";

  propagatedBuildInputs = [ requests ];

  meta = {
    description = "Python client library for the Plaid API and Link";
    homepage = "https://github.com/plaid/plaid-python";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ bhipple ];
  };
}