This commit is contained in:
adisbladis 2020-11-30 19:28:07 +01:00
parent c0c6038262
commit 18a77a95cd
No known key found for this signature in database
GPG key ID: 110BFAD44C6249B7
3 changed files with 2 additions and 9 deletions

View file

@ -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 (
old: {
nativeBuildInputs = old.nativeBuildInputs ++ [ self.cython ];

View file

@ -6,4 +6,4 @@ let
};
in
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"

View file

@ -7,4 +7,4 @@ let
};
isWheelAttr = py.python.pkgs.tensorflow.src.isWheel or false;
in
assert isWheelAttr; runCommand "prefer-wheels" {} "touch $out"
assert isWheelAttr; runCommand "prefer-wheels" { } "touch $out"