6 # since this is a dependency of pytest, we need to avoid
7 # circular dependencies
13 pyparsing = buildPythonPackage rec {
17 src = fetchFromGitHub {
20 rev = "pyparsing_${version}";
21 sha256 = "14pfy80q2flgzjcx8jkracvnxxnr59kjzp3kdm5nh232gk1v6g6h";
24 # circular dependencies if enabled by default
36 check = pyparsing.overridePythonAttrs (_: {
42 homepage = "https://github.com/pyparsing/pyparsing";
43 description = "Alternative approach to creating and executing simple grammars, vs. the traditional lex/yacc approach, or the use of regular expressions";
44 license = licenses.mit;