depot/third_party/nixpkgs/pkgs/development/python-modules/pegen/default.nix
Default email e7ec2969af Project import generated by Copybara.
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
2024-01-13 09:15:51 +01:00

50 lines
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 = 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 ];
};
}