Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
52 lines
1.0 KiB
Nix
52 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
regex,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "parsimonious";
|
|
version = "0.10.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-goFgDaGA7IrjVCekq097gr/sHj0eUvgMtg6oK5USUBw=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ regex ];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
disabledTests = [
|
|
# test_benchmarks.py tests are actually benchmarks and may fail due to
|
|
# something being unexpectedly slow on a heavily loaded build machine
|
|
"test_lists_vs_dicts"
|
|
"test_call_vs_inline"
|
|
"test_startswith_vs_regex"
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace "regex>=2022.3.15" "regex"
|
|
'';
|
|
|
|
pythonImportsCheck = [
|
|
"parsimonious"
|
|
"parsimonious.grammar"
|
|
"parsimonious.nodes"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Arbitrary-lookahead parser";
|
|
homepage = "https://github.com/erikrose/parsimonious";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
}
|