mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
fixup flask-restplus
This commit is contained in:
parent
8d283ab58a
commit
b5136138bd
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user