Handle missing coreapi in DRF 3.17#146
Open
LisaScheers wants to merge 1 commit into
Open
Conversation
LisaScheers
added a commit
to LisaScheers/nixpkgs
that referenced
this pull request
May 27, 2026
Backport the import fallback submitted upstream in rsinger86/drf-flex-fields#146.
LisaScheers
added a commit
to LisaScheers/nixpkgs
that referenced
this pull request
May 27, 2026
Backport the import fallback submitted upstream in rsinger86/drf-flex-fields#146. Assisted-by: OpenAI Codex (GPT-5)
Assisted-by: OpenAI Codex (GPT-5)
aed3c9d to
c26868b
Compare
GirardR1006
pushed a commit
to GirardR1006/nixpkgs
that referenced
this pull request
May 29, 2026
Backport the import fallback submitted upstream in rsinger86/drf-flex-fields#146. Assisted-by: OpenAI Codex (GPT-5)
GirardR1006
pushed a commit
to GirardR1006/nixpkgs
that referenced
this pull request
May 29, 2026
Backport the import fallback submitted upstream in rsinger86/drf-flex-fields#146. Assisted-by: OpenAI Codex (GPT-5)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
DRF 3.17 removed
coreapiandcoreschemafromrest_framework.compat, so importingFlexFieldsFilterBackendcurrently fails beforeget_schema_fields()can hit its existing optional dependency assertions.This keeps compatibility with older DRF versions and falls back to direct optional imports for DRF 3.17+. If neither package is installed, the existing assertions still report that schema generation requires them.
Fixes #145.