python3Packages.brevo-python: 1.1.2 -> 1.2.0

This commit was automatically generated using update-python-libraries.
This commit is contained in:
Martin Weinelt
2025-08-05 04:36:08 +02:00
parent 9524dcd2e4
commit cf956dcc73

View File

@@ -12,14 +12,14 @@
buildPythonPackage rec {
pname = "brevo-python";
version = "1.1.2";
version = "1.2.0";
pyproject = true;
src = fetchFromGitHub {
owner = "getbrevo";
repo = "brevo-python";
tag = "v${version}";
hash = "sha256-XOUFyUrqVlI7Qr4uzeXr6GJuQ+QTVhsueT1xxVQMm14=";
hash = "sha256-VYj1r69pgKgNCXzxRqvwlj5w+y3IIu21bsZJAe/7zf8=";
};
build-system = [ setuptools ];
@@ -35,6 +35,11 @@ buildPythonPackage rec {
pytestCheckHook
];
disabledTestPaths = [
# broken import; https://github.com/getbrevo/brevo-python/issues/2
"test/test_configuration.py"
];
pythonImportsCheck = [ "brevo_python" ];
meta = {