Skip to content

Commit

Permalink
Updated Nix's lark hash and build format
Browse files Browse the repository at this point in the history
  • Loading branch information
jake-arkinstall committed May 9, 2024
1 parent add1943 commit 3906cdc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion nix-support/pytket.nix
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ in {
inherit version;
propagatedBuildInputs = with super.python3.pkgs; [
self.binders
super.lark-parser
super.lark
super.types-pkg_resources
super.qwasm
graphviz
Expand Down
12 changes: 7 additions & 5 deletions nix-support/third-party-python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,17 @@ self: super: {
sha256 = "sha256:g/QA5CpAR3exRDgVQMnXGIH8bEGtwGFBjjSblbdXRkU=";
};
};
lark-parser = super.python3.pkgs.buildPythonPackage {
pname = "lark-parser";
version = "0.12.0";
lark = super.python3.pkgs.buildPythonPackage {
pname = "lark";
version = "1.1.9";
format = "pyproject";
src = super.fetchFromGitHub {
owner = "lark-parser";
repo = "lark";
rev = "refs/tags/0.12.0";
hash = "sha256-zcMGCn3ixD3dJg3GlC/ijs+U1JN1BodHLTXZc/5UR7Y=";
rev = "refs/tags/1.1.9";
hash = "sha256:pWLKjELy10VNumpBHjBYCO2TltKsZx1GhQcGMHsYJNk=";
};
nativeBuildInputs = with super.python3Packages; [ setuptools ];
doCheck = false;
};
types-pkg_resources = let
Expand Down

0 comments on commit 3906cdc

Please sign in to comment.