python3Packages.braintree: 4.41.0 -> 4.43.0

(cherry picked from commit fab38f96a8)
This commit is contained in:
Conor
2026-05-14 20:46:40 +01:00
committed by github-actions[bot]
parent 810dae540a
commit bbde42c80f

View File

@@ -7,16 +7,18 @@
setuptools,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "braintree";
version = "4.41.0";
version = "4.43.0";
pyproject = true;
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "braintree";
repo = "braintree_python";
rev = version;
hash = "sha256-5rTYRzlx/XueL6vF0/kM73bgN/QjvM55ZSLIWNI8YiQ=";
tag = finalAttrs.version;
hash = "sha256-4qLi6MplXaIT8+Us3Yb9fTph74XntagBNzyS//4K5Fk=";
};
build-system = [ setuptools ];
@@ -27,9 +29,8 @@ buildPythonPackage rec {
pythonImportsCheck = [ "braintree" ];
# Most integration tests require a running Braintree gateway.
enabledTestPaths = [
"tests/"
"tests/fixtures"
"tests/unit"
"tests/integration/test_credentials_parser.py"
];
@@ -40,4 +41,4 @@ buildPythonPackage rec {
license = lib.licenses.mit;
maintainers = [ ];
};
}
})