Sebastian Jordan
Sebastian Jordan
What if nix-linter meant the following: ```nix pkgs: let common = if pkgs.hostPlatform.system == "x86_64-linux" then pkgs.foo else pkgs.bar; in _: { foo = import ./foo.nix { inherit common; };...
Hi could you try that again with the current master version? I have the suspicion that the error you described is due to a bug that was already fixed in...
I looked into this and unfortunately this package requires `poetry` as a dependency. Currently `pypi2nix` cannot handle `poetry` because of a bug in `pip` which prevents PEP 517 packages from...
Hi, you are not fucking something up. The issue arises from the fact that pypi2nix is unable to detect `setup_requires`-requirements, build time dependencies in plain english, for projects that do...
Hi, which version of pypi2nix are you using (`pypi2nix --version`)
It should not but it does unfortunately since a lot of python packages use `setup.py` to declare their build dependencies and we have no way to detect them that way...
Solving #398 will most likely solve this issue.
Hi, because of current limitations in requirement parsing your have to specify your requirements like so: ``` ../local_package#egg=package_name file:///path/to/package#egg=other_package ``` Let me know if that helped.
hey lately i've been working on such a mechanism. check out https://pypi2nix.readthedocs.io/en/latest/external-dependencies.html if you are interested. currently there is no nice way to handle external library dependencies but it is...
Two things: 1. opencv-python does not have a source distribution. You have three options here: 1. Open an issue with the opencv-python and ask the maintainers to upload a source...