Add overrides for python-monkey-business and pytoolconfig

This commit is contained in:
Andreas Zweili 2022-11-19 18:35:56 +01:00
parent 7075b0378d
commit 7d0c438e79
1 changed files with 12 additions and 0 deletions

View File

@ -43,6 +43,18 @@
buildInputs = (old.buildInputs or [ ]) ++ [ super.flit-scm ];
}
);
python-monkey-business = super.python-monkey-business.overridePythonAttrs
(
old: {
buildInputs = (old.buildInputs or [ ]) ++ [ super.flit-scm ];
}
);
pytoolconfig = super.pytoolconfig.overridePythonAttrs
(
old: {
buildInputs = (old.buildInputs or [ ]) ++ [ super.pdm ];
}
);
});
})
pkgs.python310Packages.poetry