python311Packages.testfixtures 7.2.0 -> 7.2.2 https://repology.org/project/python:testfixtures/versions attrpath: python311Packages.testfixtures Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] Going to be running update for following packages: - python3.11-testfixtures-7.2.0 Press Enter key to continue... Running update for: - python3.11-testfixtures-7.2.0: UPDATING ... - python3.11-testfixtures-7.2.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/testfixtures/default.nix b/pkgs/development/python-modules/testfixtures/default.nix index 64b49efbd1de..aa4b8b20b707 100644 --- a/pkgs/development/python-modules/testfixtures/default.nix +++ b/pkgs/development/python-modules/testfixtures/default.nix @@ -12,7 +12,7 @@ buildPythonPackage rec { pname = "testfixtures"; - version = "7.2.0"; + version = "7.2.2"; format = "setuptools"; # DO NOT CONTACT upstream. # https://github.com/simplistix/ is only concerned with internal CI process. @@ -25,7 +25,7 @@ buildPythonPackage rec { src = fetchPypi { inherit pname version; - hash = "sha256-jIwg3TDqETVIUHWEodqud5JI26pXEmcseruXCfD7+LI="; + hash = "sha256-gHdK7LAklFgnWreD9TCT++dXlf8rMhjSLOP/8KEsTaY="; }; nativeCheckInputs = [ No auto update branch exists Old version 7.2.0" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchpatch , fetchPypi , mock , pytestCheckHook , pythonAtLeast , pythonOlder , setuptools , sybil , twisted , zope-component }: buildPythonPackage rec { pname = "testfixtures"; version = "7.2.2"; pyproject = true; # DO NOT CONTACT upstream. # https://github.com/simplistix/ is only concerned with internal CI process. # Any attempt by non-standard pip workflows to comment on issues will # be met with hostility. # https://github.com/simplistix/testfixtures/issues/169 # https://github.com/simplistix/testfixtures/issues/168 disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; hash = "sha256-gHdK7LAklFgnWreD9TCT++dXlf8rMhjSLOP/8KEsTaY="; }; patches = [ # https://github.com/simplistix/testfixtures/pull/188 (fetchpatch { name = "python3.12-compatibility.patch"; url = "https://github.com/simplistix/testfixtures/commit/2b80b195e30e12c739dc4f98e9de17dec8f3558a.patch"; hash = "sha256-LrC0uI4k3F6ZGTqbKi319tRbVk5557xbyzQN36Y1160="; }) ]; nativeBuildInputs = [ setuptools ]; nativeCheckInputs = [ mock pytestCheckHook sybil twisted zope-component ]; disabledTestPaths = [ # Django is too much hasle to setup at the moment "testfixtures/tests/test_django" ]; pytestFlagsArray = [ "testfixtures/tests" ]; pythonImportsCheck = [ "testfixtures" ]; meta = with lib; { description = "Collection of helpers and mock objects for unit tests and doc tests"; homepage = "https://github.com/Simplistix/testfixtures"; changelog = "https://github.com/simplistix/testfixtures/blob/${version}/CHANGELOG.rst"; license = licenses.mit; maintainers = with maintainers; [ siriobalmelli ]; }; }