python312Packages.flask-sqlalchemy: ignore deprecation warning

This commit is contained in:
Martin Weinelt
2024-01-10 15:26:58 +01:00
parent dcff7b422b
commit be63cd1108
@@ -5,6 +5,7 @@
, mock
, flit-core
, pytestCheckHook
, pythonAtLeast
, pythonOlder
, sqlalchemy
}:
@@ -43,6 +44,11 @@ buildPythonPackage rec {
"test_persist_selectable"
];
pytestFlagsArray = lib.optionals (pythonAtLeast "3.12") [
# datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version.
"-W" "ignore::DeprecationWarning"
];
pythonImportsCheck = [
"flask_sqlalchemy"
];