python: plaid-python: 2.3.4 -> 2.4.0

This commit is contained in:
Frederik Rietdijk 2019-02-14 08:37:24 +01:00
parent 688285c0bc
commit 9cfa9a8fba

View file

@ -1,12 +1,12 @@
{ lib, buildPythonPackage, fetchPypi, requests, pytest }:
buildPythonPackage rec {
version = "2.3.4";
version = "2.4.0";
pname = "plaid-python";
src = fetchPypi {
inherit pname version;
sha256 = "fefa30cbd1114844a07b6a37d95fd6657774ce8a551a2ac79641887cd63c72db";
sha256 = "734fe8328b7fc9a52f8e204b4cce99dd475fe5add784a57fdf0f0cb99eb752a0";
};
checkInputs = [ pytest ];