Files
nixpkgs/pkgs/development/python-modules/flask-sqlalchemy/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01: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 = {
description = "SQLAlchemy extension for Flask";
homepage = "http://flask-sqlalchemy.pocoo.org/";
changelog = "https://github.com/pallets-eco/flask-sqlalchemy/blob/${version}/CHANGES.rst";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ gerschtli ];
};
}