depot/third_party/nixpkgs/pkgs/development/python-modules/flask-sqlalchemy/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

61 lines
1.3 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
];
disabledTests = [
# flaky
"test_session_scoping_changing"
# https://github.com/pallets-eco/flask-sqlalchemy/issues/1084
"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" ];
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 ];
};
}