mirror of
https://gitlab.com/akasroua/covot
synced 2025-04-20 22:01:12 +02:00
17 lines
253 B
Nix
17 lines
253 B
Nix
{ pkgs ? import <nixpkgs> { } }:
|
|
|
|
with pkgs;
|
|
|
|
mkShell {
|
|
buildInputs = [
|
|
python38
|
|
python38Packages.telethon
|
|
python38Packages.sqlalchemy
|
|
python38Packages.pytest
|
|
python38Packages.isort
|
|
python38Packages.pyflakes
|
|
sqlite
|
|
];
|
|
|
|
}
|