e7ec2969af
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
53 lines
1.3 KiB
Nix
53 lines
1.3 KiB
Nix
{ buildPythonPackage
|
|
, fetchFromGitHub
|
|
, lib
|
|
, flit-core
|
|
, jinja2
|
|
, pytestCheckHook
|
|
, railroad-diagrams
|
|
, pyparsing
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyparsing";
|
|
version = "3.1.1";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pyparsing";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-54XMw5ahMZH4cevTFg2GXhgSu0QX1mfITWFezWirt1E=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
flit-core
|
|
];
|
|
|
|
# circular dependencies with pytest if enabled by default
|
|
doCheck = false;
|
|
nativeCheckInputs = [
|
|
jinja2
|
|
pytestCheckHook
|
|
railroad-diagrams
|
|
];
|
|
|
|
pythonImportsCheck = [ "pyparsing" ];
|
|
|
|
passthru.tests = {
|
|
check = pyparsing.overridePythonAttrs (_: { doCheck = true; });
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/pyparsing/pyparsing";
|
|
description = "Python library for creating PEG parsers";
|
|
longDescription = ''
|
|
The pyparsing module is an alternative approach to creating and executing
|
|
simple grammars, vs. the traditional lex/yacc approach, or the use of
|
|
regular expressions. The pyparsing module provides a library of classes
|
|
that client code uses to construct the grammar directly in Python code.
|
|
'';
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ kamadorueda ];
|
|
};
|
|
}
|