mirror of
https://github.com/kaiyuran/Emoji-translator-Server.git
synced 2024-11-22 09:03:39 +00:00
15 lines
233 B
Nix
15 lines
233 B
Nix
|
with import <nixpkgs> {};
|
||
|
|
||
|
mkShell {
|
||
|
buildInputs = [
|
||
|
python3
|
||
|
python3Packages.flask
|
||
|
python3Packages.flask-cors
|
||
|
python3Packages.gunicorn
|
||
|
];
|
||
|
|
||
|
shellHook = ''
|
||
|
export LANG=C.UTF-8
|
||
|
export LC_ALL=C.UTF-8
|
||
|
'';
|
||
|
}
|