Unverified Commit 5a58822a authored by Peder Bergebakken Sundt's avatar Peder Bergebakken Sundt Committed by GitHub
Browse files

python312Packages.mandown: 1.10.0 -> 1.10.1 (#370595)

parents 1ff0bdf0 92afd29c
Loading
Loading
Loading
Loading
+13 −2
Original line number Diff line number Diff line
@@ -2,6 +2,7 @@
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  fetchpatch2,
  poetry-core,
  pythonOlder,
  ebooklib,
@@ -13,7 +14,7 @@

buildPythonPackage rec {
  pname = "comicon";
  version = "1.2.1";
  version = "1.3.0";
  pyproject = true;
  disabled = pythonOlder "3.10";

@@ -21,9 +22,19 @@ buildPythonPackage rec {
    owner = "potatoeggy";
    repo = "comicon";
    tag = "v${version}";
    hash = "sha256-FvAgcpYvUTTE24jJB2ZxSNcNjAIyUBa3BaysjWXurtg=";
    hash = "sha256-0AGCTnStyBVL7DVkrUFyD60xnuuO1dcl+Twdyy+uq1Y=";
  };

  patches = [
    # Upstream forgot to bump the version before tagging
    # See https://github.com/potatoeggy/comicon/commit/d698f0f03b1a391f988176885686e9fca135676e
    (fetchpatch2 {
      name = "comicon-version-bump.patch";
      url = "https://github.com/potatoeggy/comicon/commit/d698f0f03b1a391f988176885686e9fca135676e.diff";
      hash = "sha256-ZHltw4OSYuHF8mH0kBZDsuozPy08Bm7nme+XSwfGNn8=";
    })
  ];

  nativeBuildInputs = [
    poetry-core
  ];
+2 −3
Original line number Diff line number Diff line
@@ -19,14 +19,14 @@

buildPythonPackage rec {
  pname = "mandown";
  version = "1.10.0";
  version = "1.10.1";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "potatoeggy";
    repo = "mandown";
    tag = "v${version}";
    hash = "sha256-eMZXXOGe9jKf9bXEinIIu6w3i4SOkLnDWnxmT5G0RWA=";
    hash = "sha256-6i0a2jEJy7aL6W801Xki7jmHhO5kkFL8rJI+y+MhWVo=";
  };

  nativeBuildInputs = [
@@ -34,7 +34,6 @@ buildPythonPackage rec {
  ];

  pythonRelaxDeps = [
    "lxml"
    "pillow"
    "typer"
  ];