overrides: add icecream

This commit is contained in:
Artturin 2021-12-30 03:35:13 +02:00
parent 4a13d29ad2
commit 7dbea94eec

View file

@ -504,6 +504,13 @@ self: super:
propagatedBuildInputs = (old.propagatedBuildInputs or [ ]) ++ [ self.pyparsing ];
});
icecream = super.icecream.overridePythonAttrs (old: {
# # ERROR: Could not find a version that satisfies the requirement executing>=0.3.1 (from icecream) (from versions: none)
postPatch = ''
substituteInPlace setup.py --replace 'executing>=0.3.1' 'executing'
'';
});
imagecodecs = super.imagecodecs.overridePythonAttrs (
old: {
patchPhase = ''