1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, nose
5, six
6}:
7
8buildPythonPackage rec {
9 version = "0.8.1";
10 pname = "parsimonious";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "3add338892d580e0cb3b1a39e4a1b427ff9f687858fdd61097053742391a9f6b";
15 };
16
17 checkInputs = [ nose ];
18 propagatedBuildInputs = [ six ];
19
20 meta = with stdenv.lib; {
21 homepage = "https://github.com/erikrose/parsimonious";
22 description = "Fast arbitrary-lookahead parser written in pure Python";
23 license = licenses.mit;
24 };
25
26}