depot/third_party/nixpkgs/pkgs/development/python-modules/pyparsing/default.nix
Default email 22017988c6 Project import generated by Copybara.
GitOrigin-RevId: c777cdf5c564015d5f63b09cc93bef4178b19b01
2022-04-27 11:35:20 +02:00

46 lines
1.1 KiB
Nix

{ buildPythonPackage
, fetchFromGitHub
, lib
# since this is a dependency of pytest, we need to avoid
# circular dependencies
, jinja2
, pytestCheckHook
, railroad-diagrams
}:
let
pyparsing = buildPythonPackage rec {
pname = "pyparsing";
version = "3.0.7";
src = fetchFromGitHub {
owner = "pyparsing";
repo = pname;
rev = "pyparsing_${version}";
sha256 = "sha256-RyvTTbFshAZgyZPgzqcq31E504RlnMZuf16jJYGqDDI=";
};
# circular dependencies 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