python310Packages.testfixtures 0 -> 1 attrpath: python310Packages.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 [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/1r74brba4b49a4fzf1561w781sdgx75q-packages.json.drv building '/nix/store/1r74brba4b49a4fzf1561w781sdgx75q-packages.json.drv'... Going to be running update for following packages: - python3.10-testfixtures-7.0.4 Press Enter key to continue... Running update for: - python3.10-testfixtures-7.0.4: UPDATING ... - python3.10-testfixtures-7.0.4: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/testfixtures/default.nix b/pkgs/development/python-modules/testfixtures/default.nix index bfbb1f697c1..af815329753 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.0.4"; + version = "7.1.0"; 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-xSaqiXjBAC8FnxUsSt43WMShJBjfqyspdUrmIwyvPQQ="; + hash = "sha256-RWzk85MWDyfNaEClNw7PSnDxchc39eZ6KveebIF4BKQ="; }; nativeCheckInputs = [ No auto update branch exists Old version 7.0.4" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi , mock , pytestCheckHook , pythonAtLeast , pythonOlder , sybil , twisted , zope_component }: buildPythonPackage rec { pname = "testfixtures"; version = "7.1.0"; format = "setuptools"; # 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-RWzk85MWDyfNaEClNw7PSnDxchc39eZ6KveebIF4BKQ="; }; 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 ]; }; }