fixup flask-restplus

This commit is contained in:
Frederik Rietdijk 2018-11-24 14:40:37 +01:00
parent 8d283ab58a
commit b5136138bd

View File

@ -12,6 +12,8 @@
, pytz
, aniso8601
, flask-restful
, isPy27
, enum34
}:
buildPythonPackage rec {
@ -24,7 +26,8 @@ buildPythonPackage rec {
};
checkInputs = [ nose blinker tzlocal mock rednose ];
propagatedBuildInputs = [ flask six jsonschema pytz aniso8601 flask-restful ];
propagatedBuildInputs = [ flask six jsonschema pytz aniso8601 flask-restful ]
++ lib.optional isPy27 enum34;
# RuntimeError: Working outside of application context.
doCheck = false;