nixpkgs/pkgs/development/python-modules/plaid-python/default.nix
2020-04-10 17:54:53 +01:00

25 lines
668 B
Nix

{ 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 ];
};
}