Open lenianiva opened 8 months ago
I suspect this can be fixed by adjusting this part of bin/poetry2nix
:
class UrlPackage(Package):
def fetch(self) -> Tuple[Package, subprocess.CompletedProcess]:
return (
self,
subprocess.run(
[
"nix-prefetch-url",
"--unpack",
self.source["url"],
],
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
text=True
),
)
but changing this file seems to have no effect at all.
Describe the issue
I have a
pyproject.toml
containing this lineWhen I try to build the target created by
mkPoetryApplication
:Additional context
default.nix
/shell.nix
/flake.nix
:pyproject.toml
:poetry.lock
: