Open jhhuh opened 2 years ago
Here is a kind of minimal poetry2nix setup (related to #2). You can
> nix develop
to enter your dev setup. A relevant portion you need to understand in flake.nix is just
flake.nix
# ... devShell = (pkgs.poetry2nix.mkPoetryEnv { projectDir = ./.; editablePackageSources = { myapp = ./thehodl; }; python = pkgs.${pythonDrvName}; }).env; # ...
.
Here is a kind of minimal poetry2nix setup (related to #2). You can
to enter your dev setup. A relevant portion you need to understand in
flake.nix
is just.