fix(nix): Remove unnecessary package group, use python 3.11
All checks were successful
Mirror to Forgejo / mirror-to-codeberg (push) Successful in 2s

This commit is contained in:
Jiří Štefka 2025-01-19 07:45:53 +01:00
parent 251e7a8ef5
commit cbb311a0a2
Signed by: jiriks74
GPG key ID: 1D5E30D3DB2264DE

View file

@ -5,12 +5,13 @@ let
pkgs = import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/cf8cc1201be8bc71b7cbbbdaf349b22f4f99c7ae.tar.gz") {};
in pkgs.mkShell {
packages = [
(pkgs.python3.withPackages (python-pkgs: with python-pkgs; [
(pkgs.python311.withPackages (python-pkgs: with python-pkgs; [
# select Python packages here
python-pkgs.python-lsp-server
python-pkgs.python-lsp-ruff
python-pkgs.pylsp-mypy
python-pkgs.pylsp-rope
python-lsp-server
python-lsp-ruff
pylsp-mypy
pylsp-rope
requests
]))
];
}