Skip to content

Commit

Permalink
nix: Update overlay
Browse files Browse the repository at this point in the history
  • Loading branch information
alcarney committed Sep 14, 2023
1 parent 4062a35 commit 884d5a4
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion lib/pytest-lsp/nix/pytest-lsp-overlay.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,30 @@ final: prev: {

});

lsprotocol = python-prev.lsprotocol.overridePythonAttrs(oldAttrs: rec {
version = "2023.0.0a3";

src = prev.fetchFromGitHub {
rev = version;
owner = "microsoft";
repo = oldAttrs.pname;
sha256 = "sha256-Q4jvUIMMaDX8mvdmRtYKHB2XbMEchygO2NMmMQdNkTc=";
};
});

pygls = python-prev.pygls.overridePythonAttrs (_: {
format = "pyproject";

src = prev.fetchFromGitHub {
owner = "openlawlibrary";
repo = "pygls";
rev = "main";
hash = "sha256-KjnuGQy3/YBSZyXYNWz4foUsFRbinujGxCkQjRSK4PE=";
hash = "sha256-JpopfqeLNi23TuZ5mkPEShUPScd1fB0IDXSVGvDYFXE=";
};

nativeBuildInputs = with python-prev; [
poetry-core
];
});

pytest-lsp = python-prev.buildPythonPackage {
Expand Down

0 comments on commit 884d5a4

Please sign in to comment.