Python Package build fails #902
Unanswered
hannesknoll
asked this question in
Q&A
Replies: 1 comment
-
I encounter the same problem and fix by overriding numba's tbb with deps = {nixpkgs, ...}: {
tbb = nixpkgs.tbb_2022_0;
};
pip = {
overrides.numba = {
mkDerivation.buildInputs = [config.deps.tbb];
};
}; |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello there!
I wanted to build a python package with nix and used the examples/packages/languages/python-local-development as a template. I'm using a pyproject.toml to specify my dependencies and generated a lock.json.
Generating all the lock files was no problem, but running
nix develop
results in an error:I guess this
libgcc_s.so.1
somehow needs to be included in the devshell, but I'm quiet unsure how to accomplish this.Thats why I'm asking for help, thanks in advance :) !
Those the flake.nix and default.nix files I used:
Beta Was this translation helpful? Give feedback.
All reactions