Unverified Commit 565e08be authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

Merge pull request #217381 from fabaff/boltons-bump

python310Packages.boltons: 21.0.0 -> 23.0.0
parents 64912293 e23e30c9
Loading
Loading
Loading
Loading
+2 −18
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchFromGitHub
, fetchpatch
, pytestCheckHook
, pythonAtLeast
, pythonOlder
}:

buildPythonPackage rec {
  pname = "boltons";
  version = "21.0.0";
  version = "23.0.0";
  format = "setuptools";

  disabled = pythonOlder "3.7";
@@ -18,22 +16,13 @@ buildPythonPackage rec {
    owner = "mahmoud";
    repo = "boltons";
    rev = "refs/tags/${version}";
    hash = "sha256-8HO7X2PQEbQIQsCa2cMHQI3rlofVT22GYrWNXY34MLk=";
    hash = "sha256-NqlCu0W/BQkLiaLYs9DB1RrEya6KGPfNtpAzKXxoRD0=";
  };

  nativeCheckInputs = [
    pytestCheckHook
  ];

  patches = lib.optionals (pythonAtLeast "3.10") [
    # pprint has no attribute _safe_repr, https://github.com/mahmoud/boltons/issues/294
    (fetchpatch {
      name = "fix-pprint-attribute.patch";
      url = "https://github.com/mahmoud/boltons/commit/270e974975984f662f998c8f6eb0ebebd964de82.patch";
      sha256 = "sha256-pZLfr6SRCw2aLwZeYaX7bzfJeZC4cFUILEmnVsKR6zc=";
    })
  ];

  # Tests bind to localhost
  __darwinAllowLocalNetworking = true;

@@ -41,11 +30,6 @@ buildPythonPackage rec {
    "boltons"
  ];

  disabledTests = lib.optionals (pythonAtLeast "3.11") [
    # https://github.com/mahmoud/boltons/issues/326
    "test_frozendict_api"
  ];

  meta = with lib; {
    description = "Constructs, recipes, and snippets extending the Python standard library";
    longDescription = ''