mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-05 09:11:39 -05:00
fix(overrides): add flit-core to typing-extensions
This commit is contained in:
parent
8b6d7f7c4f
commit
9ce2f75ff4
1 changed files with 6 additions and 1 deletions
|
@ -1812,7 +1812,12 @@ self: super:
|
|||
});
|
||||
|
||||
# nix uses a dash, poetry uses an underscore
|
||||
typing_extensions = super.typing_extensions or self.typing-extensions;
|
||||
typing-extensions = (super.typing_extensions or super.typing-extensions).overridePythonAttrs (
|
||||
old: {
|
||||
buildInputs = (old.buildInputs or [ ]) ++
|
||||
lib.optional (lib.versionAtLeast old.version "4.0.0") [ self.flit-core ];
|
||||
}
|
||||
);
|
||||
|
||||
urwidtrees = super.urwidtrees.overridePythonAttrs (
|
||||
old: {
|
||||
|
|
Loading…
Add table
Reference in a new issue