mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-05 09:11:39 -05:00
overrides.uwsgi: only change sourceRoot for 2.0.19.x
This commit is contained in:
parent
dc9565f068
commit
59bf583eed
1 changed files with 7 additions and 4 deletions
|
@ -2153,10 +2153,13 @@ lib.composeManyExtensions [
|
|||
buildInputs = (old.buildInputs or [ ]) ++ [ self.setuptools-scm-git-archive ];
|
||||
});
|
||||
|
||||
uwsgi = super.uwsgi.overridePythonAttrs (old: {
|
||||
buildInputs = (old.buildInputs or [ ]) ++ [ pkgs.ncurses ];
|
||||
sourceRoot = ".";
|
||||
});
|
||||
uwsgi = super.uwsgi.overridePythonAttrs
|
||||
(old:
|
||||
{
|
||||
buildInputs = (old.buildInputs or [ ]) ++ [ pkgs.ncurses ];
|
||||
} // lib.optionalAttrs (lib.versionAtLeast old.version "2.0.19" && lib.versionOlder old.version "2.0.20") {
|
||||
sourceRoot = ".";
|
||||
});
|
||||
|
||||
wcwidth = super.wcwidth.overridePythonAttrs (old: {
|
||||
propagatedBuildInputs = (old.propagatedBuildInputs or [ ]) ++
|
||||
|
|
Loading…
Add table
Reference in a new issue