about summary refs log tree commit diff
path: root/pkgs/applications/editors/vscode/extensions/ms-python.python
diff options
context:
space:
mode:
authorsuperherointj <5861043+superherointj@users.noreply.github.com>2023-03-18 16:40:30 -0300
committersuperherointj <5861043+superherointj@users.noreply.github.com>2023-03-18 16:40:36 -0300
commit9ec72407a4e81c31387132d62993161a0ca58eaa (patch)
treec8f315d6a26086e9fa8c26e53563fb24172b150c /pkgs/applications/editors/vscode/extensions/ms-python.python
parente5005453d3315aa58a04b901cbecbef5e241f7b1 (diff)
vscode-extensions: remove 'with' and normalize lib usage
* Remove 'with'.
  Reasoning: https://github.com/atorres1985-contrib/nixpkgs/commit/451dfa6d84586b5cb83e6a7254689dff66b4523a

* Normalize lib usage in vscode-extensions.
Diffstat (limited to 'pkgs/applications/editors/vscode/extensions/ms-python.python')
-rw-r--r--pkgs/applications/editors/vscode/extensions/ms-python.python/default.nix6
1 files changed, 3 insertions, 3 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 0a62a5b02daad..559eef612cd03 100644
--- a/pkgs/applications/editors/vscode/extensions/ms-python.python/default.nix
+++ b/pkgs/applications/editors/vscode/extensions/ms-python.python/default.nix
@@ -76,13 +76,13 @@ vscode-utils.buildVscodeMarketplaceExtension rec {
     fi
   '';
 
-  meta = with lib; {
+  meta = {
     description = "A Visual Studio Code extension with rich support for the Python language";
     downloadPage = "https://marketplace.visualstudio.com/items?itemName=ms-python.python";
     homepage = "https://github.com/Microsoft/vscode-python";
     changelog = "https://github.com/microsoft/vscode-python/releases";
-    license = licenses.mit;
+    license = lib.licenses.mit;
     platforms = [ "x86_64-linux" "aarch64-darwin" "x86_64-darwin" ];
-    maintainers = with maintainers; [ jraygauthier jfchevrette ];
+    maintainers = [ lib.maintainers.jraygauthier lib.maintainers.jfchevrette ];
   };
 }