mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-05 09:11:39 -05:00
overrides: add icecream
This commit is contained in:
parent
4a13d29ad2
commit
7dbea94eec
1 changed files with 7 additions and 0 deletions
|
@ -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 = ''
|
||||
|
|
Loading…
Add table
Reference in a new issue