mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 04:46:43 +00:00
python310Packages.python-utils: fix build on darwin
This commit is contained in:
parent
be4000d572
commit
a9898979dd
@ -1,4 +1,5 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, loguru
|
||||
@ -47,6 +48,11 @@ buildPythonPackage rec {
|
||||
"_python_utils_tests"
|
||||
];
|
||||
|
||||
disabledTests = lib.optionals stdenv.isDarwin [
|
||||
# Flaky tests on darwin
|
||||
"test_timeout_generator"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Module with some convenient utilities";
|
||||
homepage = "https://github.com/WoLpH/python-utils";
|
||||
|
Loading…
Reference in New Issue
Block a user