linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / plaid-python / default.nix
blobaa329953a3912014464d1be158f04c6aa24768ab
1 { lib, buildPythonPackage, fetchPypi, requests, pytest }:
3 buildPythonPackage rec {
4   version = "7.2.0";
5   pname = "plaid-python";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "bd599b384f94d8883344925f0ef223e1ab50f218872434aa40ba8c645937699c";
10   };
12   checkInputs = [ pytest ];
14   # Integration tests require API keys and internet access
15   checkPhase = "py.test -rxs ./tests/unit";
17   propagatedBuildInputs = [ requests ];
19   meta = {
20     description = "Python client library for the Plaid API and Link";
21     homepage = "https://github.com/plaid/plaid-python";
22     changelog = "https://github.com/plaid/plaid-python/blob/master/CHANGELOG.md";
23     license = lib.licenses.mit;
24     maintainers = with lib.maintainers; [ bhipple ];
25   };