mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-06 01:31:39 -05:00
overrides: fix wheel derivation to use proper inputs
This commit is contained in:
parent
84a5da7b59
commit
714fdf2f75
1 changed files with 3 additions and 5 deletions
|
@ -1273,11 +1273,9 @@ self: super:
|
||||||
pkgs.python3.pkgs.override {
|
pkgs.python3.pkgs.override {
|
||||||
python = self.python;
|
python = self.python;
|
||||||
}
|
}
|
||||||
).wheel.overridePythonAttrs (
|
).wheel.override {
|
||||||
old: {
|
inherit (self) buildPythonPackage bootstrapped-pip setuptools;
|
||||||
inherit (super.wheel) pname name version src;
|
};
|
||||||
}
|
|
||||||
);
|
|
||||||
in
|
in
|
||||||
if isWheel then wheelPackage else sourcePackage;
|
if isWheel then wheelPackage else sourcePackage;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue