python3packages.braintree: 4.41.0 -> 4.43.0 (#520215)

This commit is contained in:
Michael Daniels
2026-05-25 01:44:43 +00:00
committed by GitHub
@@ -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 = [ ];
};
}
})