1
Fork 0

python: make a virtualenv

This commit is contained in:
Motiejus Jakštys 2024-01-16 13:52:08 +02:00
parent d3c5d73198
commit e5d01f23ad
1 changed files with 11 additions and 9 deletions

View File

@ -121,17 +121,19 @@
devShells.default = pkgs.mkShellNoCC { devShells.default = pkgs.mkShellNoCC {
packages = with pkgs; [ packages = with pkgs; [
python3Packages.django_5 (python3.withPackages
python3Packages.django-compressor (ps: [
python3Packages.geoip2 ps.django
ps.django-compressor
ps.geoip2
ps.django-debug-toolbar
ps.flake8
# TODO: vim integration via EXITINT? See make check
ps.autopep8
]))
libmaxminddb libmaxminddb
dart-sass dart-sass
python3Packages.django-debug-toolbar
python3Packages.flake8
# TODO: vim integration via EXITINT? See make check
python3Packages.autopep8
]; ];
GEOIP_PATH = "${geoip-mmdb}"; GEOIP_PATH = "${geoip-mmdb}";
E11SYNC_DEBUG = "1"; E11SYNC_DEBUG = "1";