mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-05 09:11:39 -05:00
!!
This commit is contained in:
parent
c0c6038262
commit
18a77a95cd
3 changed files with 2 additions and 9 deletions
|
@ -1033,13 +1033,6 @@ self: super:
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
# setuptools-scm = builtins.trace "OWO" super.setuptools-scm.overridePythonAttrs (
|
|
||||||
# old: {
|
|
||||||
# format = "setuptools";
|
|
||||||
# buildInputs = old.buildInputs or [ ] ++ [ self.wheel self.setuptools self.pip ];
|
|
||||||
# }
|
|
||||||
# );
|
|
||||||
|
|
||||||
pandas = super.pandas.overridePythonAttrs (
|
pandas = super.pandas.overridePythonAttrs (
|
||||||
old: {
|
old: {
|
||||||
nativeBuildInputs = old.nativeBuildInputs ++ [ self.cython ];
|
nativeBuildInputs = old.nativeBuildInputs ++ [ self.cython ];
|
||||||
|
|
|
@ -6,4 +6,4 @@ let
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
assert lib.strings.hasSuffix ".egg" (lib.elemAt drv.passthru.python.pkgs.pyasn1.src.urls 0);
|
assert lib.strings.hasSuffix ".egg" (lib.elemAt drv.passthru.python.pkgs.pyasn1.src.urls 0);
|
||||||
runCommandNoCC "egg-test" {} "touch $out"
|
runCommandNoCC "egg-test" { } "touch $out"
|
||||||
|
|
|
@ -7,4 +7,4 @@ let
|
||||||
};
|
};
|
||||||
isWheelAttr = py.python.pkgs.tensorflow.src.isWheel or false;
|
isWheelAttr = py.python.pkgs.tensorflow.src.isWheel or false;
|
||||||
in
|
in
|
||||||
assert isWheelAttr; runCommand "prefer-wheels" {} "touch $out"
|
assert isWheelAttr; runCommand "prefer-wheels" { } "touch $out"
|
||||||
|
|
Loading…
Add table
Reference in a new issue