Unverified Commit 134a0791 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #231739 from fabaff/mizani-bump

python311Packages.mizani: 0.8.1 -> 0.9.0
parents d0f5d41b c3b69fdb
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -12,16 +12,16 @@

buildPythonPackage rec {
  pname = "mizani";
  version = "0.8.1";
  version = "0.9.0";
  format = "pyproject";

  disabled = pythonOlder "3.8";
  disabled = pythonOlder "3.9";

  src = fetchFromGitHub {
    owner = "has2k1";
    repo = pname;
    rev = "v${version}";
    hash = "sha256-VE0M5/s8/XmmAe8EE/FcHBFGc9ppVWuYOYMuajQeZww=";
    rev = "refs/tags/v${version}";
    hash = "sha256-XV/Lqr/kGx+t26ALLY7wTp2Ez487yvExM1GUD4AH9Bc=";
  };

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

  postPatch = ''
    substituteInPlace pytest.ini \
    substituteInPlace pyproject.toml \
      --replace " --cov=mizani --cov-report=xml" ""
  '';