depot/third_party/nixpkgs/pkgs/development/python-modules/pegen/default.nix
Default email 23b612e36f Project import generated by Copybara.
GitOrigin-RevId: ae5c332cbb5827f6b1f02572496b141021de335f
2024-01-25 23:12:00 +09:00

53 lines
1.1 KiB
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pythonAtLeast
, pythonOlder
, setuptools
, setuptools-scm
}:
buildPythonPackage rec {
pname = "pegen";
version = "0.3.0";
format = "pyproject";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "we-like-parsers";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-P4zX8za9lBlXhNPkQe9p136ggZEJh6fHfBr+DQKvtTg=";
};
nativeBuildInputs = [
setuptools
setuptools-scm
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"pegen"
];
disabledTests = [
# ValueError: Expected locations of (1, 3) and...
"test_invalid_call_arguments"
] ++ lib.optionals (pythonAtLeast "3.11") [
# https://github.com/we-like-parsers/pegen/issues/89
"test_invalid_def_stmt"
];
meta = with lib; {
description = "Library to generate PEG parsers";
homepage = "https://github.com/we-like-parsers/pegen";
changelog = "https://github.com/we-like-parsers/pegen/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}