python310Packages.flask-mongoengine: remove buildInputs

buildInputs covered the inputs which should have been part of
checkInputs. Tests are not executed, thus removed.
This commit is contained in:
Fabian Affolter
2023-02-21 10:54:03 +01:00
parent 17436a2461
commit cbe4ff8003
@@ -5,9 +5,6 @@
, flask-wtf
, mongoengine
, six
, nose
, rednose
, coverage
, email-validator
}:
@@ -30,16 +27,13 @@ buildPythonPackage rec {
six
];
# they set test requirements to setup_requirements...
buildInputs = [
nose
rednose
coverage
];
# tests require working mongodb connection
# Tests require working mongodb connection
doCheck = false;
pythonImportsCheck = [
"flask_mongoengine"
];
meta = with lib; {
description = "Flask extension that provides integration with MongoEngine and WTF model forms";
homepage = "https://github.com/mongoengine/flask-mongoengine";