python312Packages.cement: disable tests on Darwin

This commit is contained in:
Fabian Affolter 2024-12-07 09:15:07 +01:00
parent 508a791f9e
commit bbd314463d

View File

@ -1,5 +1,6 @@
{
lib,
stdenv,
buildPythonPackage,
colorlog,
fetchFromGitHub,
@ -59,6 +60,9 @@ buildPythonPackage rec {
pythonImportsCheck = [ "cement" ];
# Tests are failing on Darwin
doCheck = !stdenv.hostPlatform.isDarwin;
disabledTests = [
# Test only works with the source from PyPI
"test_get_version"