2022-11-05T09:29:47 anybadge 1.11.1 -> 1.14.0 https://github.com/jongracecox/anybadge/releases 2022-11-05T09:29:50 attrpath: anybadge 2022-11-05T09:29:51 Checking auto update branch... 2022-11-05T09:29:51 No auto update branch exists 2022-11-05T09:30:00 [version] 2022-11-05T09:30:05 [version] updated version and sha256 2022-11-05T09:30:05 [rustCrateVersion] 2022-11-05T09:30:05 [rustCrateVersion] No cargoSha256 found 2022-11-05T09:30:05 [golangModuleVersion] 2022-11-05T09:30:05 [golangModuleVersion] Not a buildGoModule package with vendorSha256 2022-11-05T09:30:05 [updateScript] 2022-11-05T09:30:05 [updateScript] skipping because derivation has no updateScript 2022-11-05T09:30:05 2022-11-05T09:30:05 [quotedUrls] 2022-11-05T09:30:06 [quotedUrls] nothing found to replace 2022-11-05T09:30:07 Diff after rewrites: diff --git a/pkgs/development/python-modules/anybadge/default.nix b/pkgs/development/python-modules/anybadge/default.nix index 489e200afb0..c2f0bdf68ad 100644 --- a/pkgs/development/python-modules/anybadge/default.nix +++ b/pkgs/development/python-modules/anybadge/default.nix @@ -6,14 +6,14 @@ buildPythonPackage rec { pname = "anybadge"; - version = "1.11.1"; + version = "1.14.0"; format = "setuptools"; src = fetchFromGitHub { owner = "jongracecox"; repo = pname; rev = "v${version}"; - sha256 = "sha256-6br4WUwE1ovAneYUeTHcUN3PH5Wm1rnLYCpXDUshk7Q="; + sha256 = "sha256-+CkkFCShCYtxKiCWRQcgTFcekc/g7ujQj9MdnG1+a0A="; }; # setup.py reads its version from the TRAVIS_TAG environment variable 2022-11-05T09:32:39 Received ExitFailure 100 when running Raw command: /nix/store/6fr58pqy02hmgw1h7b9nqmv7vlp3v346-nix-2.3.15/bin/nix-build --option sandbox true --arg config "{ allowBroken = true; allowUnfree = true; allowAliases = false; }" --arg overlays "[ ]" -A anybadge nix build failed. @nix { "action": "setPhase", "phase": "pythonCatchConflictsPhase" } pythonCatchConflictsPhase @nix { "action": "setPhase", "phase": "pythonRemoveBinBytecodePhase" } pythonRemoveBinBytecodePhase @nix { "action": "setPhase", "phase": "pythonImportsCheckPhase" } pythonImportsCheckPhase Executing pythonImportsCheckPhase Check whether the following modules can be imported: anybadge @nix { "action": "setPhase", "phase": "pytestCheckPhase" } pytestCheckPhase Executing pytestCheckPhase ============================= test session starts ============================== platform linux -- Python 3.10.8, pytest-7.1.3, pluggy-1.0.0 rootdir: /build/source collecting ...  collected 41 items / 1 error  ==================================== ERRORS ==================================== ____________________ ERROR collecting tests/test_server.py _____________________ ImportError while importing test module '/build/source/tests/test_server.py'. Hint: make sure your test modules/packages have valid Python names. Traceback: /nix/store/xcaaly5shfy227ffs8nipxrd49b56iqq-python3-3.10.8/lib/python3.10/importlib/__init__.py:126: in import_module return _bootstrap._gcd_import(name[level:], package, level) tests/test_server.py:4: in import requests # type: ignore E ModuleNotFoundError: No module named 'requests' =========================== short test summary info ============================ ERROR tests/test_server.py !!!!!!!!!!!!!!!!!!!! Interrupted: 1 error during collection !!!!!!!!!!!!!!!!!!!! =============================== 1 error in 0.19s =============================== 2022-11-05T12:49:34 anybadge 1.9.0 -> 1.14.0 https://pypi.org/project/anybadge/ 2022-11-05T12:49:42 attrpath: anybadge 2022-11-05T12:49:43 Checking auto update branch... 2022-11-05T12:49:43 No auto update branch exists 2022-11-05T12:49:45 Old version 1.9.0" not present in master derivation file with contents: { lib , fetchFromGitHub , buildPythonPackage , pytestCheckHook }: buildPythonPackage rec { pname = "anybadge"; version = "1.11.1"; format = "setuptools"; src = fetchFromGitHub { owner = "jongracecox"; repo = pname; rev = "v${version}"; sha256 = "sha256-6br4WUwE1ovAneYUeTHcUN3PH5Wm1rnLYCpXDUshk7Q="; }; # setup.py reads its version from the TRAVIS_TAG environment variable TRAVIS_TAG = "v${version}"; checkInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "anybadge" ]; meta = with lib; { description = "Python tool for generating badges for your projects"; homepage = "https://github.com/jongracecox/anybadge"; license = licenses.mit; maintainers = with maintainers; [ fabiangd ]; }; }