Unverified Commit 754508ea authored by nicoo's avatar nicoo Committed by GitHub
Browse files

Merge #311152: mandown 1.7.0 -> 1.8.0, add `updateScript`

parents f0703923 60135b8f
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -9,6 +9,7 @@
, filetype
, lxml
, natsort
, nix-update-script
, pillow
, python-slugify
, requests
@@ -18,14 +19,14 @@

buildPythonPackage rec {
  pname = "mandown";
  version = "1.7.0";
  version = "1.8.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "potatoeggy";
    repo = "mandown";
    rev = "refs/tags/v${version}";
    hash = "sha256-oHa7/2fv+BG5KIKFIICYBqddub5SokDvAI6frbVwGSo=";
    hash = "sha256-vzvidtfBwbIV6cIUjQQIezN12VfxsBOKODoSChz2VDA=";
  };

  nativeBuildInputs = [
@@ -56,6 +57,7 @@ buildPythonPackage rec {
    gui = [
      pyside6
    ];
    updateScript = nix-update-script { };
  };

  pythonImportsCheck = [ "mandown" ];