Unverified Commit e88b7bf9 authored by Anderson Torres's avatar Anderson Torres Committed by GitHub
Browse files

Merge pull request #206865 from atorres1985-contrib/pyparsing

pyparsing: refactor
parents 0ec294ab 16e4fc2b
Loading
Loading
Loading
Loading
+37 −33
Original line number Diff line number Diff line
@@ -5,10 +5,10 @@
, jinja2
, pytestCheckHook
, railroad-diagrams
, pyparsing
}:

let
  pyparsing = buildPythonPackage rec {
buildPythonPackage rec {
  pname = "pyparsing";
  version = "3.0.9";
  format = "pyproject";
@@ -40,10 +40,14 @@ let

  meta = with lib; {
    homepage = "https://github.com/pyparsing/pyparsing";
      description = "An alternative approach to creating and executing simple grammars, vs. the traditional lex/yacc approach, or the use of regular expressions";
    description = "Python library for creating PEG parsers";
    longDescription = ''
      The pyparsing module is an alternative approach to creating and executing
      simple grammars, vs. the traditional lex/yacc approach, or the use of
      regular expressions. The pyparsing module provides a library of classes
      that client code uses to construct the grammar directly in Python code.
   '';
    license = licenses.mit;
    maintainers = with maintainers; [ kamadorueda ];
  };
  };
in
pyparsing
}