python312Packages.python-zbar 0.23.90 -> 0.23.93 https://github.com/mchehab/zbar/releases attrpath: python312Packages.python-zbar 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] this derivation will be built: /nix/store/i016il1cacnayjcnvic4qivdbb2xdwfk-packages.json.drv building '/nix/store/i016il1cacnayjcnvic4qivdbb2xdwfk-packages.json.drv'... Going to be running update for following packages: - python3.12-python-zbar-0.23.90 Press Enter key to continue... Running update for: - python3.12-python-zbar-0.23.90: UPDATING ... - python3.12-python-zbar-0.23.90: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/python-zbar/default.nix b/pkgs/development/python-modules/python-zbar/default.nix index 4d85b26875cd..a7c28b2992d4 100644 --- a/pkgs/development/python-modules/python-zbar/default.nix +++ b/pkgs/development/python-modules/python-zbar/default.nix @@ -8,14 +8,14 @@ buildPythonPackage rec { pname = "python-zbar"; - version = "0.23.90"; + version = "0.23.93"; format = "setuptools"; src = fetchFromGitHub { owner = "mchehab"; repo = "zbar"; - rev = version; - hash = "sha256-FvV7TMc4JbOiRjWLka0IhtpGGqGm5fis7h870OmJw2U="; + rev = "refs/tags/${version}"; + hash = "sha256-6gOqMsmlYy6TK+iYPIBsCPAk8tYDliZYMYeTOidl4XQ="; }; patches = [ No auto update branch exists Old version 0.23.90" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchFromGitHub , pillow , zbar , pytestCheckHook }: buildPythonPackage rec { pname = "python-zbar"; version = "0.23.93"; format = "setuptools"; src = fetchFromGitHub { owner = "mchehab"; repo = "zbar"; rev = "refs/tags/${version}"; hash = "sha256-6gOqMsmlYy6TK+iYPIBsCPAk8tYDliZYMYeTOidl4XQ="; }; patches = [ # python: enum: fix build for Python 3.11 # https://github.com/mchehab/zbar/pull/231 # the patch is reworked as it does not cleanly apply ./0001-python-enum-fix-build-for-Python-3.11.patch ]; propagatedBuildInputs = [ pillow ]; buildInputs = [ zbar ]; nativeCheckInputs = [ pytestCheckHook ]; preBuild = '' cd python ''; disabledTests = [ #AssertionError: b'Y800' != 'Y800' "test_format" "test_new" #Requires loading a recording device #zbar.SystemError: "test_processing" ]; pythonImportsCheck = [ "zbar" ]; meta = with lib; { description = "Python bindings for zbar"; homepage = "https://github.com/mchehab/zbar"; license = licenses.lgpl21Only; maintainers = with maintainers; [ wolfangaukang ]; }; }