-
Notifications
You must be signed in to change notification settings - Fork 105
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
packageExtra creating requirement conflict with itself #485
Comments
ok, the file path issue is #403 |
fun fact, adding a version="123" to buildPytohnPackage makes it build. bonus fun fact: something is not treating the version string as something opaque. ok, so it evaluates to "6c82cdc" if you don't set a version. So why does this then explode downstream? |
More debugging shows that in resolver/resolvelib_resolver.py ... resolve() around line 66, self.nixpkgs is slightly different
so that's the next rabbit hole. |
Got it down to if not req.specs:
# We filter version with an empty specifier set, since that will filter
# out prerelease, if there are any other releases.
return SpecifierSet().filter(versions) which filters out the one and only available version here. (which it shouldn't according to the packaging doc's) |
oh great, LegacyVersion is also going to disappear: pypa/packaging#321 |
once the PR is accepted, this can go away. |
leads to
This is, of course, the stripped down example.
Could've sworn this was working a while ago, but the older relases die in a different way (something about an empty file_path).
Am I holding it wrong?
The text was updated successfully, but these errors were encountered: