python3Packages.plaid-python: 8.1.0 -> 8.3.0

conduit-nginx
Fabian Affolter 2021-10-19 12:26:34 +02:00
parent a1810f03d1
commit 5e415b911b
1 changed files with 22 additions and 10 deletions

View File

@ -1,26 +1,38 @@
{ lib, buildPythonPackage, fetchPypi, requests, pytest }:
{ lib
, buildPythonPackage
, fetchPypi
, nulltype
, python-dateutil
, urllib3
}:
buildPythonPackage rec {
version = "8.1.0";
pname = "plaid-python";
version = "8.3.0";
src = fetchPypi {
inherit pname version;
sha256 = "b1f7b5b58ba3c171bb795352119d54797c8c50877bc376d26cd756de2453e9fd";
sha256 = "13gj4xb0lx2dgdkcdp7fvvql3vjr572qpa1m993z3p7n5c27j5xi";
};
checkInputs = [ pytest ];
propagatedBuildInputs = [
nulltype
python-dateutil
urllib3
];
# Integration tests require API keys and internet access
checkPhase = "py.test -rxs ./tests/unit";
# Tests require a Client IP
doCheck = false;
propagatedBuildInputs = [ requests ];
pythonImportsCheck = [
"plaid"
];
meta = {
meta = with lib; {
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 ];
license = licenses.mit;
maintainers = with maintainers; [ bhipple ];
};
}