Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 34 lines 663 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, glibcLocales 5, pytestrunner 6, pytestCheckHook 7}: 8 9buildPythonPackage rec { 10 pname = "Arpeggio"; 11 version = "1.9.2"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "948ce06163a48a72c97f4fe79ad3d1c1330b6fec4f22ece182fb60ef60bd022b"; 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}