!rWxyQqNqMUDLECdsIf:blad.is

Poetry2nix

315 Members
https://github.com/nix-community/poetry2nix60 Servers

Load older messages


SenderMessageTime
26 Jan 2024
@tyberius_prime:matrix.orgTyberiusPrime (smilodon inopinatus)what llm contraption are you trying to nixify, If I might ask.10:51:39
@angryant:envs.netAngryAntWe're developing a composite python-dotnet chat & project management tool.10:53:00
@angryant:envs.netAngryAntMostly doing a lot of bridging.10:53:28
@tyberius_prime:matrix.orgTyberiusPrime (smilodon inopinatus)Now I have 'python-inside-of-delphi' flashbacks :). Good luck with that.10:54:59
@angryant:envs.netAngryAntThanks :) The composite part has worked well for a long while - we're not really worried there. The new part is moving to Poetry, so we can have as much of python development as possible not require syncing updates to the nix shell script.10:57:44
@willhansen:matrix.orgWill Hansen joined the room.16:19:53
@mroxatron:matrix.orgAndy Mroczkowski joined the room.22:43:32
@mroxatron:matrix.orgAndy Mroczkowski

Hi, I'm a novice nix user. I’m trying to write a flake for a poetry project at work. The existing project has gnureadline in the pyproject.toml dev dependencies:

[tool.poetry.group.dev.dependencies]
gnureadline = "^8.1.2"

When I try to build the flake, I get the following error:

  ld: library not found for -lncurses
  clang-16: error: linker command failed with exit code 1 (use -v to see invocation)
  error: command '/nix/store/2k44jw0kwqnymimzfwq1p53s59rvbvzr-clang-wrapper-16.0.6/bin/clang' failed with exit code 1

A stripped-down example of the issue is here: https://github.com/amrox/poetry2nix-gnureadline

Any ideas how to resolve this?

22:49:46
@angryant:envs.netAngryAnt
In reply to @mroxatron:matrix.org

Hi, I'm a novice nix user. I’m trying to write a flake for a poetry project at work. The existing project has gnureadline in the pyproject.toml dev dependencies:

[tool.poetry.group.dev.dependencies]
gnureadline = "^8.1.2"

When I try to build the flake, I get the following error:

  ld: library not found for -lncurses
  clang-16: error: linker command failed with exit code 1 (use -v to see invocation)
  error: command '/nix/store/2k44jw0kwqnymimzfwq1p53s59rvbvzr-clang-wrapper-16.0.6/bin/clang' failed with exit code 1

A stripped-down example of the issue is here: https://github.com/amrox/poetry2nix-gnureadline

Any ideas how to resolve this?

ncurses is a native dependency of one of your python libraries. Just need to add that in as well.
22:54:23
27 Jan 2024
@mroxatron:matrix.orgAndy Mroczkowski thanks, but I still don't understand how to do it. I found this article https://github.com/nix-community/poetry2nix/blob/master/docs/edgecases.md which helped me get past the build issue with debian-parser. I still don't understand where to add the native dependencies. This article talks about it https://www.tweag.io/blog/2020-08-12-poetry2nix/ but I don't follow exactly how 03:24:09
@mroxatron:matrix.orgAndy MroczkowskiI think I figured it out with inspiration from https://github.com/nix-community/poetry2nix/blob/master/overrides/default.nix03:58:36
31 Jan 2024
@federicodschonborn:matrix.org@federicodschonborn:matrix.org changed their profile picture.03:36:47
@federicodschonborn:matrix.org@federicodschonborn:matrix.org changed their profile picture.06:22:22
1 Feb 2024
@vengmark2:matrix.orgl0b0

I'm getting this error when trying to enter a poetry2nix environment with latest poetry2nix master and gitlint 0.19.1:

ValueError: Unable to determine which files to ship inside the wheel using the following heuristics: https://hatch.pypa.io/latest/plugins/builder/wheel/#default-file-selection

23:15:43
@vengmark2:matrix.orgl0b0 *

I'm getting this error when trying to enter a poetry2nix environment with latest poetry2nix master and gitlint 0.19.1:

ValueError: Unable to determine which files to ship inside the wheel using the following heuristics: https://hatch.pypa.io/latest/plugins/builder/wheel/#default-file-selection

Not sure how to deal with that.

23:19:05
@vengmark2:matrix.orgl0b0 *

I'm getting this error when trying to enter a poetry2nix environment with latest poetry2nix master and gitlint 0.19.1:

ValueError: Unable to determine which files to ship inside the wheel using the following heuristics: https://hatch.pypa.io/latest/plugins/builder/wheel/#default-file-selection

Not sure how to deal with that.

tests/gitlint already runs against 0.19.1, so presumably it has something to do with combining poetry2nix master with nixos-unstable nixpkgs.

23:30:14
@vengmark2:matrix.orgl0b0 *

I'm getting this error when trying to enter a poetry2nix environment with latest poetry2nix master and gitlint 0.19.1:

ValueError: Unable to determine which files to ship inside the wheel using the following heuristics: https://hatch.pypa.io/latest/plugins/builder/wheel/#default-file-selection

Not sure how to deal with that.

tests/gitlint already runs against 0.19.1, so presumably it has something to do with combining poetry2nix master with recent nixpkgs. This fails on both nixos-unstable and nixos-23.11.

23:32:40
5 Feb 2024
@gaivs:matrix.orggaivsHello, I'm currently getting a collision error and I'm not sure how to fix it. The error is: `error: collision between `/nix/store/qnrbkh9xk85xkm5s0h03rihzzp2bv117-python3.10-py3rosmsgs-1.18.2/lib/python3.10/site-packages/genpy/__pycache__/__init__.cpython-310.opt-1.pyc' and `/nix/store/n5ncx7zza0852fawz56r2cn32ydv4yw8-python3.10-genpy-2022.1/lib/python3.10/site-packages/genpy/__pycache__/__init__.cpython-310.opt-1.pyc'`11:07:32
@gaivs:matrix.orggaivsOr if anyone have any pointers to how I can debug this issue, it would be much appreciated 😊11:08:27
@djacu:matrix.org@djacu:matrix.orgWe would need more context. What's your kernel configuration look like?17:03:16
@gaivs:matrix.orggaivsI found a similar problem on the issues page, and ended up removing the offending files through the override, e.g. postInstall='' rm -f $out/lib/python3.10/site-packafes/genpy/__pycache__/__init__.cpython-310.opt.pyc ''; I can post a simplified version of my flake and pyproject tomorrow20:05:14
6 Feb 2024
@phaer:matrix.org@phaer:matrix.orgGoing by the paths alone, it looks like py3rosmsgs vendors genpy, so you'd end up with two versions of that module in PYTHON_PATH. 09:01:53
@phaer:matrix.org@phaer:matrix.org * Going by the paths alone, it looks like py3rosmsgs vendors genpy, so you'd end up with two versions of that module in PYTHONPATH. 09:01:57
@gaivs:matrix.orggaivs
In reply to @phaer:matrix.org
Going by the paths alone, it looks like py3rosmsgs vendors genpy, so you'd end up with two versions of that module in PYTHONPATH.
Yeah that makes sense. Do you know how I'd try to fix this? Can I remove the vendor somehow for py3rosmsgs?
09:26:45
@phaer:matrix.org@phaer:matrix.orgYou could do that the same way you removed the non-vendored version via postInstall above. Would recommend to check why it's vendored first ;)09:31:09
@gaivs:matrix.orggaivsJust removing it from genpy makes it work, no idea why they are vendored though, and don't really know what to look for, could you give me a pointer? šŸ˜…10:01:28
@phaer:matrix.org@phaer:matrix.orgNot the easiest question, as I don't know either of those packages. Could be that it's just to ease distribution, could also be that they are vendoring a patched version. First thing to check could be whether the vendored genpy is actually different from the upstream one. Or just asking py3rosmsgs maintainers about it10:23:11
@gaivs:matrix.orggaivspy3rosmsgs doesn't seem to depend on genpy, though it has a module called genpy... I wonder if this is due to a naming crash? The annoying thing is that what I'm actually depending on here is the rosnumpy package, which is the one that in the end brings in genpy and py3rosmsgs, so there are, annoyingly, multiple levels of separation12:08:53
@phaer:matrix.org@phaer:matrix.orgOh, i see. That's unfortunate. Python packages aren't namespaced by their distribution name, so python can't really distinguish between the module called genpy exposed by py3rosmgs, and the one exposed by genpy itself14:28:58
@gaivs:matrix.orggaivsAh ok, yeah that is unfortunate... Oh well, there's not much I can do about this, if I run into problems because of this, I'll just have to remove that rosnumpy package 15:35:15

Show newer messages


Back to Room ListRoom Version: 6