nixpkgs/pkgs/development/python-modules/plaid-python/default.nix
2026-02-19 20:26:53 +01:00

41 lines
811 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
nulltype,
python-dateutil,
urllib3,
setuptools,
}:
buildPythonPackage (finalAttrs: {
pname = "plaid-python";
version = "38.3.0";
pyproject = true;
src = fetchPypi {
pname = "plaid_python";
inherit (finalAttrs) version;
hash = "sha256-dNoJ1zZSd1IB4DM2U8eglnjK0c7Zh3vtUQb/EFegWEA=";
};
build-system = [ setuptools ];
dependencies = [
nulltype
python-dateutil
urllib3
];
# Tests require a Client IP
doCheck = false;
pythonImportsCheck = [ "plaid" ];
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;
};
})