python3Packages.flask-cores: fix tests

This commit is contained in:
Jonathan Ringer 2020-11-05 15:17:28 -08:00
parent 3316af8b21
commit 022b8690d1

View file

@ -1,5 +1,5 @@
{ stdenv, fetchPypi, buildPythonPackage { stdenv, fetchPypi, buildPythonPackage
, nose, flask, six }: , nose, flask, six, packaging }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "Flask-Cors"; pname = "Flask-Cors";
@ -10,7 +10,7 @@ buildPythonPackage rec {
sha256 = "6bcfc100288c5d1bcb1dbb854babd59beee622ffd321e444b05f24d6d58466b8"; sha256 = "6bcfc100288c5d1bcb1dbb854babd59beee622ffd321e444b05f24d6d58466b8";
}; };
checkInputs = [ nose ]; checkInputs = [ nose packaging ];
propagatedBuildInputs = [ flask six ]; propagatedBuildInputs = [ flask six ];
# Exclude test_acl_uncaught_exception_500 test case because is not compatible # Exclude test_acl_uncaught_exception_500 test case because is not compatible