Merge pull request #219 from ilikeavocadoes/master

Fix osqp
This commit is contained in:
adisbladis 2021-02-02 12:40:20 +01:00 committed by GitHub
commit 26ea0644b3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -633,6 +633,13 @@ self: super:
}
);
osqp = super.osqp.overridePythonAttrs (
old: {
nativeBuildInputs = old.nativeBuildInputs ++ [ pkgs.cmake ];
dontUseCmakeConfigure = true;
}
);
parsel = super.parsel.overridePythonAttrs (
old: rec {
nativeBuildInputs = old.nativeBuildInputs ++ [ self.pytest-runner ];