Skip to content
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
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 5f0afa48d140
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1a262d01ba1b
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on May 7, 2019

  1. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    picnoir Félix
    Copy the full SHA
    8b9883a View commit details

Commits on May 11, 2019

  1. Merge pull request #61062 from risicle/ris-lark-parser-enable-tests

    pythonPackages.lark-parser: enable majority of tests
    c0bw3b authored May 11, 2019

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    picnoir Félix
    Copy the full SHA
    1a262d0 View commit details
Showing with 3 additions and 4 deletions.
  1. +3 −4 pkgs/development/python-modules/lark-parser/default.nix
7 changes: 3 additions & 4 deletions pkgs/development/python-modules/lark-parser/default.nix
Original file line number Diff line number Diff line change
@@ -15,12 +15,11 @@ buildPythonPackage rec {
sha256 = "1zynj09w361yvbxr4hir681dfnlq1hzniws9dzgmlkvd6jnhjgx3";
};

checkPhase = ''
${python.interpreter} -m unittest
# tests of Nearley support require js2py
preCheck = ''
rm -r tests/test_nearley
'';

doCheck = false; # Requires js2py

meta = {
description = "A modern parsing library for Python, implementing Earley & LALR(1) and an easy interface";
homepage = https://github.com/lark-parser/lark;