1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 18:21:07 +01:00
Files
niveum/configs/packages/python.nix

24 lines
444 B
Nix
Raw Normal View History

2020-06-10 17:37:25 +02:00
{ pkgs, ... }: {
2019-04-19 03:11:51 +02:00
environment.systemPackages = [
2020-06-10 17:37:25 +02:00
(pkgs.python3.withPackages (py: [
py.black
py.python-language-server
py.pyls-mypy
py.pyls-black
py.pyls-isort
py.flake8
py.flask
py.pygments
py.docopt
py.schema
py.ansicolors
py.virtualenv
]))
2019-04-19 03:11:51 +02:00
];
home-manager.users.me.xdg.configFile."pycodestyle".text = ''
[pycodestyle]
max-line-length = 110
'';
}