pythonPackags.plaid-python: 4.0.0 -> 6.0.0

Tested end-to-end with my plaid python scripts.
wip/yesman
Benjamin Hipple 4 years ago
parent 1365b9ac70
commit 6350ea2538
  1. 6
      pkgs/development/python-modules/plaid-python/default.nix

@ -1,15 +1,16 @@
{ lib, buildPythonPackage, fetchPypi, requests, pytest }:
buildPythonPackage rec {
version = "4.0.0";
version = "6.0.0";
pname = "plaid-python";
src = fetchPypi {
inherit pname version;
sha256 = "2bf91e4c1054c920ec8911038f86efdc76067bf6b55a9787bd846129ce01ff4a";
sha256 = "0a0ay39k50hbxxaxz09m2azz5c08yqki2gincziv6g381yrlj68s";
};
checkInputs = [ pytest ];
# Integration tests require API keys and internet access
checkPhase = "py.test -rxs ./tests/unit";
@ -18,6 +19,7 @@ buildPythonPackage rec {
meta = {
description = "Python client library for the Plaid API and Link";
homepage = "https://github.com/plaid/plaid-python";
changelog = "https://github.com/plaid/plaid-python/blob/master/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ bhipple ];
};

Loading…
Cancel
Save