Unverified Commit 446ce471 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #204759 from fabaff/exceptiongroup-bump

python310Packages.exceptiongroup: 1.0.1 -> 1.0.4
parents 8bc69af9 9dd5cd84
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -8,14 +8,14 @@

buildPythonPackage rec {
  pname = "exceptiongroup";
  version = "1.0.1";
  version = "1.0.4";
  format = "flit";

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-c4Zvf4Qu3myx2qQsSvB44gNeX3YH8OLHYsxRuzG757I=";
    hash = "sha256-vRSWe3nNm9tU2XMjIW+P31M+J435N6oqkAiefW4G5ew=";
  };

  nativeBuildInputs = [
@@ -33,6 +33,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Backport of PEP 654 (exception groups)";
    homepage = "https://github.com/agronholm/exceptiongroup";
    changelog = "https://github.com/agronholm/exceptiongroup/blob/${version}/CHANGES.rst";
    license = with licenses; [ mit ];
    maintainers = with maintainers; [ fab ];
  };