mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-05 09:11:39 -05:00
Add override for isort to cover missing dependency on setuptools
Without this, the wrapped isort binary cannot import setuptools.
Upstream, this will eventually be fixed when the code containing this
line gets released:
3e09facb23/isort/main.py (L19)
This commit is contained in:
parent
51854b6c8b
commit
8b880bddb2
1 changed files with 7 additions and 0 deletions
|
@ -171,6 +171,13 @@ self: super:
|
|||
}
|
||||
);
|
||||
|
||||
isort = super.isort.overridePythonAttrs
|
||||
(
|
||||
old: {
|
||||
propagatedBuildInputs = old.propagatedBuildInputs ++ [ pkgs.setuptools ];
|
||||
}
|
||||
);
|
||||
|
||||
jupyter = super.jupyter.overridePythonAttrs
|
||||
(
|
||||
old: rec {
|
||||
|
|
Loading…
Add table
Reference in a new issue