Files
nixpkgs/pkgs/development/python-modules/flask-sqlalchemy/default.nix
T
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
2023-01-21 12:00:00 +00:00

49 lines
868 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pdm-pep517
, flask
, mock
, sqlalchemy
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "Flask-SQLAlchemy";
version = "3.0.2";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-FhmfWz3ftp4N8vUq5Mdq7b/sgjRiNJ2rshobLgorZek=";
};
nativeBuildInputs = [
pdm-pep517
];
propagatedBuildInputs = [
flask
sqlalchemy
];
nativeCheckInputs = [
mock
pytestCheckHook
];
disabledTests = [
# flaky
"test_session_scoping_changing"
# https://github.com/pallets-eco/flask-sqlalchemy/issues/1084
"test_persist_selectable"
];
meta = with lib; {
description = "SQLAlchemy extension for Flask";
homepage = "http://flask-sqlalchemy.pocoo.org/";
license = licenses.bsd3;
maintainers = with maintainers; [ gerschtli ];
};
}