python312Packages.mizani: 0.13.1 -> 0.13.2

Diff: https://github.com/has2k1/mizani/compare/refs/tags/v0.13.1...v0.13.2

Changelog: https://github.com/has2k1/mizani/releases/tag/v0.13.2
This commit is contained in:
Gaetan Lepage
2025-04-03 22:26:41 +02:00
parent c1fc9c391d
commit 5866d82470
@@ -13,19 +13,20 @@
scipy,
# tests
pytest-cov-stub,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "mizani";
version = "0.13.1";
version = "0.13.2";
pyproject = true;
src = fetchFromGitHub {
owner = "has2k1";
repo = "mizani";
tag = "v${version}";
hash = "sha256-3eEOkrF3Sn5ZETnxgc5spwHlbJAiDhkJkd5LwMl0QEY=";
hash = "sha256-ccw6GvwB23D0nHjbyAthm4pX7u2MpJM1N3EL2eRnZHI=";
};
build-system = [ setuptools-scm ];
@@ -37,12 +38,10 @@ buildPythonPackage rec {
scipy
];
nativeCheckInputs = [ pytestCheckHook ];
postPatch = ''
substituteInPlace pyproject.toml \
--replace " --cov=mizani --cov-report=xml" ""
'';
nativeCheckInputs = [
pytest-cov-stub
pytestCheckHook
];
pythonImportsCheck = [ "mizani" ];