forked from pennersr/django-allauth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
shell.nix
30 lines (29 loc) · 810 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
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
sphinx
twine
];
}