9 buildPythonPackage rec {
12 format = "setuptools";
14 disabled = pythonOlder "3.7";
16 src = fetchFromGitHub {
18 owner = "python-parsy";
20 hash = "sha256-/Bu3xZUpXI4WiYJKKWTJTdSFq8pwC1PFDw0Kr8s3Fe8=";
23 nativeCheckInputs = [ pytestCheckHook ];
25 pythonImportsCheck = [ "parsy" ];
28 homepage = "https://github.com/python-parsy/parsy";
29 description = "Easy-to-use parser combinators, for parsing in pure Python";
30 changelog = "https://github.com/python-parsy/parsy/blob/v${version}/docs/history.rst";
31 license = licenses.mit;
32 maintainers = with maintainers; [ milibopp ];