-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
36 lines (33 loc) · 883 Bytes
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
description = "A very basic flake";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
};
outputs = {
self,
nixpkgs,
}: let
pkgs = nixpkgs.legacyPackages."x86_64-linux";
in {
devShells."x86_64-linux".default = pkgs.mkShell {
packages = with pkgs; [
chromedriver
python311
python311Packages.selenium
python311Packages.openai
python311Packages.python-dotenv
python311Packages.python-socketio
python311Packages.flask
python311Packages.speechrecognition
python311Packages.websockets
python311Packages.pydub
python311Packages.scipy
python311Packages.webdriver-manager
python311Packages.beautifulsoup4
python311Packages.pynput
python311Packages.pyaudio
python311Packages.pydantic
];
};
};
}