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:
Steve Purcell 2020-05-04 11:17:49 +12:00 committed by adisbladis
parent 51854b6c8b
commit 8b880bddb2
No known key found for this signature in database
GPG key ID: 110BFAD44C6249B7

View file

@ -171,6 +171,13 @@ self: super:
}
);
isort = super.isort.overridePythonAttrs
(
old: {
propagatedBuildInputs = old.propagatedBuildInputs ++ [ pkgs.setuptools ];
}
);
jupyter = super.jupyter.overridePythonAttrs
(
old: rec {