Merge pull request #170765 from gador/octoprint-fix-build-overrides

octoprint: fix build failure due to python upgrades
main
Bernardo Meurer 2 years ago committed by GitHub
commit ed79d5cdb3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 20
      pkgs/applications/misc/octoprint/default.nix

@ -174,6 +174,7 @@ let
}; };
disabledTestPaths = [ disabledTestPaths = [
"t/unit/backends/test_mongodb.py" "t/unit/backends/test_mongodb.py"
"t/unit/backends/test_cassandra.py"
]; ];
}); });
} }
@ -254,6 +255,24 @@ let
} }
) )
(
self: super: {
flask-restful = super.flask-restful.overridePythonAttrs (oldAttrs: rec {
# remove werkzeug patch
patches = [];
});
}
)
(
self: super: {
trytond = super.trytond.overridePythonAttrs (oldAttrs: rec {
# remove werkzeug patch
patches = [];
});
}
)
# Built-in dependency # Built-in dependency
( (
self: super: { self: super: {
@ -406,6 +425,7 @@ let
"watchdog" "watchdog"
"wrapt" "wrapt"
"zeroconf" "zeroconf"
"Flask-Login"
]; ];
in in
'' ''

Loading…
Cancel
Save