Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: cf597f0926a5
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1349894743fd
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Nov 7, 2018

  1. lark-parser: 2017-12-18 -> 0.6.5

    This bumps lark-parser to a released version that doesn't loop forever
    and consumes all memory on certain grammars.
    
    erezsh/lark redirects now to lark-parser/lark, so also update homepage.
    
    (cherry picked from commit becf887)
    flokli authored and FRidh committed Nov 7, 2018
    Copy the full SHA
    1349894 View commit details
Showing with 6 additions and 6 deletions.
  1. +6 −6 pkgs/development/python-modules/lark-parser/default.nix
12 changes: 6 additions & 6 deletions pkgs/development/python-modules/lark-parser/default.nix
Original file line number Diff line number Diff line change
@@ -5,14 +5,14 @@
}:

buildPythonPackage rec {
pname = "lark-parser"; # PyPI name
version = "2017-12-18";
pname = "lark-parser";
version = "0.6.5";

src = fetchFromGitHub {
owner = "erezsh";
owner = "lark-parser";
repo = "lark";
rev = "9d6cde9b1ba971f02ea8106fa3b71a934e83d6fa";
sha256 = "0nv6nxd8wx9dwhn37m94fkc10gknckrjs1hzajxygla3dpql455j";
rev = version;
sha256 = "0mf10xm9blqik8mwrpw0r07vqlk2y4r98yqvk1sq849zqlxmqpsr";
};

checkPhase = ''
@@ -23,7 +23,7 @@ buildPythonPackage rec {

meta = {
description = "A modern parsing library for Python, implementing Earley & LALR(1) and an easy interface";
homepage = https://github.com/erezsh/lark;
homepage = https://github.com/lark-parser/lark;
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fridh ];
};