Skip to content

Commit 837bdfe

Browse files
committed
don't install lsp on ci
1 parent 9c77151 commit 837bdfe

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

flake.nix

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,6 @@
2828
pytest
2929
mypy
3030
black
31-
32-
pylsp-mypy
33-
python-lsp-black
3431
]))
3532
];
3633
});
@@ -46,6 +43,13 @@
4643
devShells.ci = mkDevShell {};
4744
devShells.default = mkDevShell {
4845
inherit (self.checks.${system}.pre-commit-check) shellHook;
46+
buildInputs = [
47+
(pkgs.python3.withPackages (ps:
48+
with ps; [
49+
pylsp-mypy
50+
python-lsp-black
51+
]))
52+
];
4953
};
5054

5155
checks = {

0 commit comments

Comments
 (0)