9 lines
141 B
Nix
9 lines
141 B
Nix
|
{ pkgs ? import <nixpkgs> {} }:
|
||
|
pkgs.mkShell {
|
||
|
nativeBuildInputs = [
|
||
|
pkgs.python3
|
||
|
pkgs.python311Packages.flask
|
||
|
];
|
||
|
}
|
||
|
|