1{ lib
2, buildPythonPackage
3, fetchPypi
4, glibcLocales
5, pytestrunner
6, pytestCheckHook
7}:
8
9buildPythonPackage rec {
10 pname = "Arpeggio";
11 version = "1.10.1";
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "920d12cc762edb2eb56daae64a14c93e43dc181b481c88fc79314c0df6ee639e";
16 };
17
18 # Shall not be needed for next release
19 LC_ALL = "en_US.UTF-8";
20 buildInputs = [ glibcLocales ];
21
22 nativeBuildInputs = [ pytestrunner ];
23
24 checkInputs = [ pytestCheckHook ];
25
26 disabledTests = [ "test_examples" "test_issue_22" ];
27
28 dontUseSetuptoolsCheck = true;
29
30 meta = {
31 description = "Packrat parser interpreter";
32 license = lib.licenses.mit;
33 };
34}