Unverified Commit 0dc6b401 authored by Martin Weinelt's avatar Martin Weinelt
Browse files

python312Packages.comicon: 1.1.0 -> 1.2.0

parent ab5a40ef
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -13,15 +13,15 @@

buildPythonPackage rec {
  pname = "comicon";
  version = "1.1.0";
  version = "1.2.0";
  pyproject = true;
  disabled = pythonOlder "3.10";

  src = fetchFromGitHub {
    owner = "potatoeggy";
    repo = "comicon";
    rev = "v${version}";
    hash = "sha256-VP4n2pWXHge2gJ67O2nErJ30gI0vaAMn0VOpX8sLkfs=";
    rev = "refs/tags/v${version}";
    hash = "sha256-oiEzZRgyG/RQCo2zSTqwlOhkwz76lSImR0ZtSlIUp4Y=";
  };

  nativeBuildInputs = [
@@ -38,6 +38,8 @@ buildPythonPackage rec {
    python-slugify
  ];

  doCheck = false; # test artifacts are not public

  pythonImportsCheck = [ "comicon" ];

  meta = with lib; {