summary refs log tree commit diff
path: root/pkgs/top-level/aliases.nix
diff options
context:
space:
mode:
authorJamie Magee <jamie.magee@gmail.com>2023-01-07 14:47:39 -0800
committerajs124 <git@ajs124.de>2023-02-15 15:13:55 +0100
commitf28e84d855a287d20fd995f203ce4fdfc23cbef8 (patch)
tree296b1ef6570873671bdab86f954aede69d114a81 /pkgs/top-level/aliases.nix
parentef0f472c013c78bbba478238d722ab55f78e22dc (diff)
downloadnixpkgs-f28e84d855a287d20fd995f203ce4fdfc23cbef8.tar
nixpkgs-f28e84d855a287d20fd995f203ce4fdfc23cbef8.tar.gz
nixpkgs-f28e84d855a287d20fd995f203ce4fdfc23cbef8.tar.bz2
nixpkgs-f28e84d855a287d20fd995f203ce4fdfc23cbef8.tar.lz
nixpkgs-f28e84d855a287d20fd995f203ce4fdfc23cbef8.tar.xz
nixpkgs-f28e84d855a287d20fd995f203ce4fdfc23cbef8.tar.zst
nixpkgs-f28e84d855a287d20fd995f203ce4fdfc23cbef8.zip
python3Packages.pyls-mypy: remove
[`pyls-mypy`](https://github.com/tomv564/pyls-mypy) depends on the deprecated [`palantir/python-language-server`](https://github.com/palantir/python-language-server). nixpkgs doesn't package the `palantir` version, instead we package [`microsoft/python-language-server`](https://github.com/microsoft/python-language-server). I don't know if they are interchangable, but regardless, `pyls-mypy`, `palantir/python-language-server`, and `microsoft/python-language-server` are all deprecated.

The replacement for `palantir/python-language-server` and `microsoft/python-language-server` is [`python-lsp-server`](https://github.com/python-lsp/python-lsp-server) which is [already in nixpkgs](https://github.com/NixOS/nixpkgs/blob/master/pkgs/development/python-modules/python-lsp-server/default.nix). The replacement for `pyls-mypy` is [`pylsp-mypy`](https://github.com/python-lsp/pylsp-mypy) and [is also already available in nixpkgs](https://github.com/NixOS/nixpkgs/blob/master/pkgs/development/python-modules/pylsp-mypy/default.nix)
Diffstat (limited to 'pkgs/top-level/aliases.nix')
-rw-r--r--pkgs/top-level/aliases.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix
index c7324ef60e7..d091a2eecc7 100644
--- a/pkgs/top-level/aliases.nix
+++ b/pkgs/top-level/aliases.nix
@@ -1275,6 +1275,7 @@ mapAliases ({
   pulseeffects = throw "Use pulseeffects-legacy if you use PulseAudio and easyeffects if you use PipeWire"; # Added 2021-02-13
   pulseeffects-pw = easyeffects; # Added 2021-07-07
   pyls-black = throw "pyls-black has been removed from nixpkgs. Use python-lsp-black instead."; # Added 2023-01-09
+  pyls-mypy = throw "pyls-mypy has been removed from nixpkgs. Use pylsp-mypy instead."; # Added 2023-01-09
   py-wmi-client = throw "py-wmi-client has been removed: abandoned by upstream"; # Added 2022-04-26
   pydb = throw "pydb has been removed: abandoned by upstream"; # Added 2022-04-22
   pyIRCt = throw "pyIRCt has been removed from nixpkgs as it is unmaintained and python2-only";