nix: tweak overrides
This commit is contained in:
parent
5a54c064e9
commit
ff20db0dd1
1 changed files with 23 additions and 2 deletions
|
@ -24,7 +24,7 @@ let
|
|||
|
||||
click-didyoumean = prev.click-didyoumean.overridePythonAttrs (
|
||||
prevAttrs: {
|
||||
buildInputs = (prevAttrs.buildInputs or []) ++ [ final.poetry ];
|
||||
nativeBuildInputs = (prevAttrs.nativeBuildInputs or []) ++ [ final.poetry-core ];
|
||||
}
|
||||
);
|
||||
|
||||
|
@ -40,11 +40,32 @@ let
|
|||
}
|
||||
);
|
||||
|
||||
django-imagekit = prev. django-imagekit.overridePythonAttrs (
|
||||
django-imagekit = prev.django-imagekit.overridePythonAttrs (
|
||||
prevAttrs: {
|
||||
format = "setuptools";
|
||||
}
|
||||
);
|
||||
|
||||
pathspec = prev.pathspec.overridePythonAttrs (
|
||||
prevAttrs: {
|
||||
nativeBuildInputs = (prevAttrs.nativeBuildInputs or []) ++ [ final.flit-core ];
|
||||
}
|
||||
);
|
||||
|
||||
iniconfig = prev.iniconfig.overridePythonAttrs (
|
||||
prevAttrs: {
|
||||
nativeBuildInputs = (prevAttrs.nativeBuildInputs or []) ++ [ final.hatchling ];
|
||||
}
|
||||
);
|
||||
|
||||
humanize = prev.humanize.overridePythonAttrs (
|
||||
prevAttrs: {
|
||||
nativeBuildInputs = (prevAttrs.nativeBuildInputs or []) ++ [
|
||||
final.hatchling
|
||||
final.hatch-vcs
|
||||
];
|
||||
}
|
||||
);
|
||||
});
|
||||
|
||||
meta = with lib; {
|
||||
|
|
Loading…
Add table
Reference in a new issue