Unverified Commit d5b17097 authored by Mario Rodas's avatar Mario Rodas Committed by GitHub
Browse files

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

python310Packages.python-utils: 3.4.5 -> 3.5.2
parents 9f3c3114 a9898979
Loading
Loading
Loading
Loading
+8 −2
Original line number Diff line number Diff line
{ 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";