Unverified Commit 77b49e9b authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

Merge pull request #245338 from r-ryantm/auto-update/python310Packages.arpeggio

python310Packages.arpeggio: 2.0.0 -> 2.0.2
parents 79293750 fe22d02a
Loading
Loading
Loading
Loading
+3 −8
Original line number Diff line number Diff line
@@ -6,19 +6,14 @@

buildPythonPackage rec {
  pname = "arpeggio";
  version = "2.0.0";
  version = "2.0.2";

  src = fetchPypi {
    pname = "Arpeggio";
    inherit version;
    hash = "sha256-1rA4OQGbuKaHhfkpLuajaxlU64S5JbhKa4peHibT7T0=";
    hash = "sha256-x5CysG4ibS3UaOT7+1t/UGzsZkFgMf3hRBzx3ioLpwA=";
  };

  postPatch = ''
    substituteInPlace setup.cfg \
      --replace "pytest-runner" ""
  '';

  nativeCheckInputs = [ pytestCheckHook ];

  pythonImportsCheck = [ "arpeggio" ];
@@ -27,6 +22,6 @@ buildPythonPackage rec {
    description = "Recursive descent parser with memoization based on PEG grammars (aka Packrat parser)";
    homepage = "https://github.com/textX/Arpeggio";
    license = licenses.mit;
    maintainers = with maintainers; [ ];
    maintainers = with maintainers; [ nickcao ];
  };
}