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