summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2024-05-13 23:40:43 +0200
committerGitHub <noreply@github.com>2024-05-13 23:40:43 +0200
commita8a3cf536e6146f9f142a0125c562c08db6e68bf (patch)
tree7282e70c99884fc0fcc312e9c09a4499439cd1c2
parentMerge pull request #311408 from uninsane/pr-hyprland-cross (diff)
parent vscode-extensions.ms-python.python: 2023.1.10091012 -> 2024.5.11021008 (diff)
downloadnixpkgs-a8a3cf536e6146f9f142a0125c562c08db6e68bf.tar.gz
Merge pull request #311430 from Shawn8901/update-ms-python
vscode-extensions.ms-python.python: 2023.1.10091012 -> 2024.5.11021008
-rw-r--r--pkgs/applications/editors/vscode/extensions/ms-python.python/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/applications/editors/vscode/extensions/ms-python.python/default.nix b/pkgs/applications/editors/vscode/extensions/ms-python.python/default.nix
index 67a96652b6ed..35bc6cdcef23 100644
--- a/pkgs/applications/editors/vscode/extensions/ms-python.python/default.nix
+++ b/pkgs/applications/editors/vscode/extensions/ms-python.python/default.nix
@@ -21,8 +21,8 @@ vscode-utils.buildVscodeMarketplaceExtension rec {
mktplcRef = {
name = "python";
publisher = "ms-python";
- version = "2023.1.10091012";
- hash = "sha256-JosFv6ngJmw1XRILwTZMVxlGIdWFLFQjj4olfnVwAIM=";
+ version = "2024.5.11021008";
+ hash = "sha256-UnI0leRKqCtFLBdGS/UvLuCcxQhibyY0ChmzQ9uytoY=";
};
buildInputs = [ icu ];
@@ -37,11 +37,11 @@ vscode-utils.buildVscodeMarketplaceExtension rec {
postPatch =
''
# remove bundled python deps and use libs from nixpkgs
- rm -r pythonFiles/lib
- mkdir -p pythonFiles/lib/python/
- ln -s ${python3.pkgs.debugpy}/lib/*/site-packages/debugpy pythonFiles/lib/python/
+ rm -r python_files/lib
+ mkdir -p python_files/lib/python/
+ ln -s ${python3.pkgs.debugpy}/lib/*/site-packages/debugpy python_files/lib/python/
buildPythonPath "$propagatedBuildInputs"
- for i in pythonFiles/*.py; do
+ for i in python_files/*.py; do
patchPythonScript "$i"
done
''