Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 19 lines 644 B view raw
1{ stdenv, buildPythonPackage, fetchPypi }: 2buildPythonPackage rec { 3 pname = "pyparsing"; 4 version = "2.3.1"; 5 6 src = fetchPypi { 7 inherit pname version; 8 sha256 = "66c9268862641abcac4a96ba74506e594c884e3f57690a696d21ad8210ed667a"; 9 }; 10 11 # Not everything necessary to run the tests is included in the distribution 12 doCheck = false; 13 14 meta = with stdenv.lib; { 15 homepage = http://pyparsing.wikispaces.com/; 16 description = "An alternative approach to creating and executing simple grammars, vs. the traditional lex/yacc approach, or the use of regular expressions"; 17 license = licenses.mit; 18 }; 19}