We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c77151 commit 837bdfeCopy full SHA for 837bdfe
flake.nix
@@ -28,9 +28,6 @@
28
pytest
29
mypy
30
black
31
-
32
- pylsp-mypy
33
- python-lsp-black
34
]))
35
];
36
});
@@ -46,6 +43,13 @@
46
43
devShells.ci = mkDevShell {};
47
44
devShells.default = mkDevShell {
48
45
inherit (self.checks.${system}.pre-commit-check) shellHook;
+ buildInputs = [
+ (pkgs.python3.withPackages (ps:
+ with ps; [
49
+ pylsp-mypy
50
+ python-lsp-black
51
+ ]))
52
+ ];
53
};
54
55
checks = {
0 commit comments