mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-04 16:51:40 -05:00
Merge pull request #739 from mayl/template_devshell
Adds a devshell to template which includes poetry
This commit is contained in:
commit
6853b060f0
1 changed files with 6 additions and 0 deletions
|
@ -30,5 +30,11 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
defaultApp = pkgs.myapp;
|
defaultApp = pkgs.myapp;
|
||||||
|
|
||||||
|
devShell = pkgs.mkShell {
|
||||||
|
buildInputs = with pkgs; [
|
||||||
|
(python310.withPackages (ps: with ps; [ poetry ]))
|
||||||
|
];
|
||||||
|
};
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue