Unverified Commit cd55bbfa authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

python3Packages.mdformat-gfm-alerts: 1.0.1 -> 2.0.0 (#411844)

parents 70698c42 dd041c21
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -10,14 +10,14 @@

buildPythonPackage rec {
  pname = "mdformat-gfm-alerts";
  version = "1.0.1";
  version = "2.0.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "KyleKing";
    repo = "mdformat-gfm-alerts";
    tag = "v${version}";
    hash = "sha256-2EYdNCyS1LxcEnCXkOugAAGx5XLWV4cWTNkXjR8RVQo=";
    hash = "sha256-Hfi4Ek91G8WHAWjv7m52ZnT5Je9QyZT4yWSecaeTcvA=";
  };

  build-system = [ flit-core ];
@@ -34,9 +34,8 @@ buildPythonPackage rec {
  meta = {
    description = "Format 'GitHub Markdown Alerts', which use blockquotes to render admonitions";
    homepage = "https://github.com/KyleKing/mdformat-gfm-alerts";
    changelog = "https://github.com/KyleKing/mdformat-gfm-alerts/releases/tag/v${version}";
    changelog = "https://github.com/KyleKing/mdformat-gfm-alerts/releases/tag/${src.tag}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ sigmanificient ];
    broken = true; # broken test due to changes in mdformat; compare https://github.com/KyleKing/mdformat-admon/issues/25
  };
}