Merge pull request #216128 from r-ryantm/auto-update/python310Packages.python-utils

python310Packages.python-utils: 3.4.5 -> 3.5.2
This commit is contained in:
Mario Rodas 2023-02-13 23:13:11 -05:00 committed by GitHub
commit d5b17097fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,5 @@
{ lib
, stdenv
, buildPythonPackage
, fetchFromGitHub
, loguru
@ -10,7 +11,7 @@
buildPythonPackage rec {
pname = "python-utils";
version = "3.4.5";
version = "3.5.2";
format = "setuptools";
disabled = pythonOlder "3.7";
@ -19,7 +20,7 @@ buildPythonPackage rec {
owner = "WoLpH";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-O/+jvdzzxUFaQdAfUM9p40fPPDNN+stTauCD993HH6Y=";
hash = "sha256-FFBWkq7ct4JWSTH4Ldg+pbG/BAiW33puB7lqFPBjptw=";
};
postPatch = ''
@ -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";