python311Packages.mizani: 0.8.1 -> 0.9.0

Diff: https://github.com/has2k1/mizani/compare/refs/tags/v0.8.1...v0.9.0

Changelog: https://github.com/has2k1/mizani/releases/tag/v0.9.0
This commit is contained in:
Fabian Affolter 2023-05-13 22:53:03 +02:00
parent 1de41f9f36
commit c3b69fdb05

View File

@ -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" ""
'';