Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / plaid-python / default.nix
blobf3a92c1954c85583a0450c2bfae23a9e27d1f5e9
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , nulltype
5 , python-dateutil
6 , urllib3
7 , pythonOlder
8 }:
10 buildPythonPackage rec {
11   pname = "plaid-python";
12   version = "21.0.0";
13   format = "setuptools";
15   disabled = pythonOlder "3.6";
17   src = fetchPypi {
18     inherit pname version;
19     hash = "sha256-ksYTV10FGUjBIkJru4CiJIlPLT4S7fbpsNrjYczTFlI=";
20   };
22   propagatedBuildInputs = [
23     nulltype
24     python-dateutil
25     urllib3
26   ];
28   # Tests require a Client IP
29   doCheck = false;
31   pythonImportsCheck = [
32     "plaid"
33   ];
35   meta = with lib; {
36     description = "Python client library for the Plaid API and Link";
37     homepage = "https://github.com/plaid/plaid-python";
38     changelog = "https://github.com/plaid/plaid-python/blob/master/CHANGELOG.md";
39     license = licenses.mit;
40     maintainers = with maintainers; [ bhipple ];
41   };