-
-
Notifications
You must be signed in to change notification settings - Fork 15.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add optional manylinux1 (PEP 513) support for Python #55812
Conversation
Figured I'd send you another one @FRidh :) |
Related issue #18484 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it's important to better define the goal. Is it to be able to run manylinux1
packages, or is it to build manylinux1
packages?
If you want to run them, I suggest instead of extending the buildPythonPackage
to add the autoPatchelfHook
as setupHook
to your manylinux
environment. That way, you can use buildPythonPackage
with format = "wheel";
and just add your manylinux
env to the buildInputs
and everything will work.
If you want to build them, well, then we need to create a function to create a wheel (split it out of buildPythonPackage
) and disable patchelf
.
# The desired libraries can be collectively found in these packages | ||
libs = [glib libGL ncurses5 xorg.libX11 xorg.libXrender xorg.libXext xorg.libICE xorg.libSM glibc gcc7.cc]; | ||
|
||
package = stdenv.mkDerivation { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
consider using runCommand
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done, please check that it's reasonable to pass in buildInputs
this way
The goal is to create a Python environment that has I would say building such wheels is out of scope, it's a different problem. (Not sure if anyone would want it.) Yeah, maybe adding this to
but currently |
BTW if there were a modified version like Anyway, thanks for the review so far! I'll look into your suggestions tomorrow. |
that's |
Right exactly, see my edit above haha. Curious about the idea you mentioned to not add this to the builder. |
Okay @FRidh , just responded to your review. I also implemented an idea for how |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I had a look at it, and it's going in the right direction, but there's still changes to be made (more than what I commented on). As branch-off is happening soon there are more important things that require my attention, so I'll probably won't be able to give further feedback in the coming week (or two).
@FRidh just responded to your latest two comments. Now that 19.03 is released, any chance you have time to help me push this over the finish line? :) |
See https://github.com/FRidh/nixpkgs/tree/manylinux1. I split it into two commits and removed the The question is now, how do you want to use it? If you open e.g. a |
Sorry for the delay, I had to regain context on this. I think it was wrong to remove the
The idea is to set
So, in the resulting Thus, I think the missing piece is the change to |
No, nothing needs to be added to |
Confused, I'm looking at https://github.com/FRidh/nixpkgs/tree/manylinux1 and not seeing any |
Friendly ping @FRidh , I still need some clarification on what you mean before I can proceed. |
@thomasjm I guess FRidh wants you to add something like Anyway, using the branch with the modification I was able to build some derivations I was previously not able to. Thanks to both of you. |
Glad to help @Quarub. Is your use-case building manylinux1-compatible wheels? I'm wondering if you have any opinions on how the final version of this should look--for example, if we add the |
I wanted to install a library from Pypi and ran into |
No worries @Quarub -- I'm just trying to be clear what exactly you did to make things work so I can make sure this gets packaged up in a nice way for your use-case. Any details you can provide to spell out how you made it work for you would be helpful. |
Sorry @thomasjm , I had to deal with some tasks.
Btw. if you spot something I could improve in the expressions, please tell me. For example I just figured that I could replace |
Thanks for the details @Quarub . Maybe I'm missing something obvious but I'm still a little confused by how that worked for you, since none of the files you posted seem to actually mention @FRidh , I'm thinking about closing this PR since we haven't been able to come up with a story for how to package it up. For my own purposes I can simply keep a copy of the manylinux1 file in my own code and create a manylinux1-capable environment like this:
The ability to make an environment like this is all I ever wanted. It allows me to |
this is stale and not looking like it's something we want to do at this time. closing. |
Motivation for this change
PEP 513 tries to make the task of distributing Python wheels easier by defining a list of "core" shared libraries that should be available on any Linux system. If your system contains these libraries, then you are considered
manylinux1
compliant and you can install these wheels.Until now, Nix's Python distributions have not been
manylinux1
compliant, but it would be nice if it were possible. This is primarily useful if you are using Nix to installpip
and then usingpip
to install additional packages outside of Nix. (cf. #51641)This PR isn't entirely complete -- I'm not sure the right way to expose this option and looking for feedback. Currently the idea is that you can make a
manylinux1
-compliantpython.withPackages
like this:There would also need to be a way to re-implement the restriction that prevents attempting to install
manylinux1
wheels when it isn't enabled; we can't just bake it into the Python build.There's some discussion about this restriction in #18484.
Things done
sandbox
innix.conf
on non-NixOS)nix-shell -p nox --run "nox-review wip"
./result/bin/
)nix path-info -S
before and after)