mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 13:43:22 +00:00
50 lines
1.1 KiB
Nix
50 lines
1.1 KiB
Nix
{ buildPythonPackage
|
|
, fetchFromGitHub
|
|
, lib
|
|
, flit-core
|
|
, jinja2
|
|
, pytestCheckHook
|
|
, railroad-diagrams
|
|
}:
|
|
|
|
let
|
|
pyparsing = buildPythonPackage rec {
|
|
pname = "pyparsing";
|
|
version = "3.0.9";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pyparsing";
|
|
repo = pname;
|
|
rev = "pyparsing_${version}";
|
|
sha256 = "sha256-aCRyJQyLf8qQ6NO41q+HC856TjIHzIt0vyVBLV+3teE=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
flit-core
|
|
];
|
|
|
|
# circular dependencies with pytest if enabled by default
|
|
doCheck = false;
|
|
checkInputs = [
|
|
jinja2
|
|
pytestCheckHook
|
|
railroad-diagrams
|
|
];
|
|
|
|
pythonImportsCheck = [ "pyparsing" ];
|
|
|
|
passthru.tests = {
|
|
check = pyparsing.overridePythonAttrs (_: { doCheck = true; });
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/pyparsing/pyparsing";
|
|
description = "An alternative approach to creating and executing simple grammars, vs. the traditional lex/yacc approach, or the use of regular expressions";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ kamadorueda ];
|
|
};
|
|
};
|
|
in
|
|
pyparsing
|