Yueh-Shun Li 76e2a397c2 treewide: pytestFlagsArray -> pytestFlags and join flag and option argument
This treewide change targets Python packages
that specifies pytest flags with pytestFlagsArray,
and whose flags cannot be consructed by other pytestCheckHook-honoured arguments.

Use the __structuredAttrs-agnostic argument pytestFlags
instead of the deprecated pytestFlagsArray.

For flags with option arguments,
join each flag and their option argument into a single command-line argument
following POSIX Utility Argument Syntax[1]
for easier overriding (remove/replace).

Examples:

* [ "-W" "ignore:message:WarningClass" ] ->
  [ "-Wignore:message:WarningClass" ]

* [ "--reruns" "3" ] ->
  [ "--reruns=3" ]

[1]: https://pubs.opengroup.org/onlinepubs/009695399/basedefs/xbd_chap12.html
2025-06-16 01:02:16 +08:00

63 lines
1.4 KiB
Nix

{
lib,
buildPythonPackage,
fetchPypi,
flask,
mock,
flit-core,
pytestCheckHook,
pythonAtLeast,
pythonOlder,
sqlalchemy,
}:
buildPythonPackage rec {
pname = "flask-sqlalchemy";
version = "3.1.1";
format = "pyproject";
disabled = pythonOlder "3.9";
src = fetchPypi {
pname = "flask_sqlalchemy";
inherit version;
hash = "sha256-5LaLuIGALdoafYeLL8hMBtHuV/tAuHTT3Jfav6NrgxI=";
};
nativeBuildInputs = [ flit-core ];
propagatedBuildInputs = [
flask
sqlalchemy
];
nativeCheckInputs = [
mock
pytestCheckHook
];
doCheck = pythonOlder "3.13"; # https://github.com/pallets-eco/flask-sqlalchemy/issues/1379
disabledTests = [
# flaky
"test_session_scoping_changing"
# https://github.com/pallets-eco/flask-sqlalchemy/issues/1378
"test_explicit_table"
];
pytestFlags = lib.optionals (pythonAtLeast "3.12") [
# datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version.
"-Wignore::DeprecationWarning"
];
pythonImportsCheck = [ "flask_sqlalchemy" ];
meta = with lib; {
description = "SQLAlchemy extension for Flask";
homepage = "http://flask-sqlalchemy.pocoo.org/";
changelog = "https://github.com/pallets-eco/flask-sqlalchemy/blob/${version}/CHANGES.rst";
license = licenses.bsd3;
maintainers = with maintainers; [ gerschtli ];
};
}