forked from pennersr/django-allauth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
shell.nix
39 lines (36 loc) · 983 Bytes
/
shell.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
37
38
39
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "django-allauth";
buildInputs = [
black
gettext
isort
djlint
python310
python310Packages.django
python310Packages.flake8
python310Packages.debugpy
python310Packages.pycodestyle
python310Packages.pyls-flake8
python310Packages.pylsp-rope
python310Packages.pytest
python310Packages.pytest-cov
python310Packages.pytest-django
python310Packages.python-lsp-server
python310Packages.python3-openid
python310Packages.python3-saml
python310Packages.qrcode
python310Packages.sphinx-rtd-theme
python310Packages.requests-oauthlib
python310Packages.tox
python310Packages.daphne
sphinx
twine
nodejs
playwright-test
swagger-cli
];
shellHook = ''
export PATH="$PWD/node_modules/.bin/:$PATH"
'';
}