Files
nixpkgs/pkgs/applications/editors/vim/plugins/utils/nvim-treesitter/update-shell.nix
Austin Horstman 34970867e2 nvim-treesitter/update.py: source from nurr
Upstream no longer updating the sources in the lockfile.json, but they
still update in their main branch's parsers.lua. We don't need to parse
that file since nurr is already doing that for us. We can just grab
latest parser info from their json.
2025-05-18 09:27:44 -05:00

21 lines
223 B
Nix

{
pkgs ? import ../../../../../../.. { },
}:
with pkgs;
let
pythonWithPackages = python3.withPackages (
ps: with ps; [
requests
]
);
in
mkShell {
packages = [
nurl
pythonWithPackages
];
}