python311Packages.rich-pixels 0 -> 1 attrpath: python311Packages.rich-pixels Checking auto update branch... [version] [version] generic version rewriter does not support multiple hashes [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/1xfh6378zkpxlghjpv9ms7lcggrpljks-packages.json.drv building '/nix/store/1xfh6378zkpxlghjpv9ms7lcggrpljks-packages.json.drv'... Going to be running update for following packages: - python3.11-rich-pixels-2.2.0 Press Enter key to continue... Running update for: - python3.11-rich-pixels-2.2.0: UPDATING ... - python3.11-rich-pixels-2.2.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/rich-pixels/default.nix b/pkgs/development/python-modules/rich-pixels/default.nix index 7b77e59b6c9f..8b97f1320c49 100644 --- a/pkgs/development/python-modules/rich-pixels/default.nix +++ b/pkgs/development/python-modules/rich-pixels/default.nix @@ -12,14 +12,14 @@ buildPythonPackage rec { pname = "rich-pixels"; - version = "2.2.0"; + version = "3.0.0"; format = "pyproject"; src = fetchFromGitHub { owner = "darrenburns"; repo = "rich-pixels"; - rev = version; - hash = "sha256-fbpnHEfBPWLSYhgETqKbdmmzt7Lu/4oKgetjgNvv04c="; + rev = "refs/tags/${version}"; + hash = "sha256-73CEtK/p4JVOtJgP7CNyee9vEJXaxaAj/kHjWIGETeQ="; }; patches = [ No auto update branch exists Old version 2.2.0" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchFromGitHub , fetchpatch , poetry-core , pytestCheckHook , syrupy , pillow , rich , pythonRelaxDepsHook }: buildPythonPackage rec { pname = "rich-pixels"; version = "3.0.0"; format = "pyproject"; src = fetchFromGitHub { owner = "darrenburns"; repo = "rich-pixels"; rev = "refs/tags/${version}"; hash = "sha256-73CEtK/p4JVOtJgP7CNyee9vEJXaxaAj/kHjWIGETeQ="; }; patches = [ (fetchpatch { name = "fix-version.patch"; url = "https://github.com/darrenburns/rich-pixels/commit/ff1cc3fef789321831f29e9bf282ae6b337eddb2.patch"; hash = "sha256-58ZHBNg1RCuOfuE034qF1SbAgoiWMNlSG3c5pCSLUyI="; }) ]; nativeBuildInputs = [ poetry-core pythonRelaxDepsHook ]; nativeCheckInputs = [ pytestCheckHook ]; checkInputs = [ syrupy ]; propagatedBuildInputs = [ pillow rich ]; pythonRelaxDeps = [ "pillow" ]; pythonImportsCheck = [ "rich_pixels" ]; meta = with lib; { description = "A Rich-compatible library for writing pixel images and ASCII art to the terminal"; homepage = "https://github.com/darrenburns/rich-pixels"; changelog = "https://github.com/darrenburns/rich-pixels/releases/tag/${src.rev}"; license = licenses.mit; maintainers = with maintainers; [ figsoda ]; }; }