This commit is contained in:
commit
95a533c876
451 changed files with 18255 additions and 0 deletions
17
templates/dev/flask-hello/nix/shell.nix
Normal file
17
templates/dev/flask-hello/nix/shell.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
pkgs ? import <nixpkgs> { },
|
||||
...
|
||||
}:
|
||||
|
||||
pkgs.mkShell {
|
||||
buildInputs = [
|
||||
(pkgs.python3.withPackages (
|
||||
p: with p; [
|
||||
flask
|
||||
gunicorn
|
||||
]
|
||||
))
|
||||
pkgs.nixfmt-tree
|
||||
pkgs.black
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue