From 652cde4f8a8e02cdc57787d97ac506261fb0867d Mon Sep 17 00:00:00 2001 From: Perchun Pak Date: Fri, 10 Apr 2026 17:05:40 +0200 Subject: [PATCH] gh-cherry-pick: 1.2.0 -> 1.3.1 --- pkgs/by-name/gh/gh-cherry-pick/package.nix | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/pkgs/by-name/gh/gh-cherry-pick/package.nix b/pkgs/by-name/gh/gh-cherry-pick/package.nix index a85b93ce8d4e..3067b42553fa 100644 --- a/pkgs/by-name/gh/gh-cherry-pick/package.nix +++ b/pkgs/by-name/gh/gh-cherry-pick/package.nix @@ -5,14 +5,14 @@ }: python3Packages.buildPythonApplication (finalAttrs: { pname = "gh-cherry-pick"; - version = "1.2.0"; + version = "1.3.1"; pyproject = true; src = fetchFromGitHub { owner = "PerchunPak"; repo = "gh-cherry-pick"; tag = "v${finalAttrs.version}"; - hash = "sha256-EiXWgiCV99k3810nCWA+AnlLjG8VKRCPnns9KtfGxqY="; + hash = "sha256-plNxOYLfKWLjN5RR1g2VOJWgyrzXdgI0MDJYe05XcCk="; }; build-system = with python3Packages; [ @@ -20,18 +20,9 @@ python3Packages.buildPythonApplication (finalAttrs: { uv-dynamic-versioning ]; - pythonRelaxDeps = [ - "attrs" - "trio" - ]; - dependencies = with python3Packages; [ - attrs cyclopts httpx - loguru - trio - typing-extensions ]; nativeCheckInputs = with python3Packages; [ @@ -39,7 +30,6 @@ python3Packages.buildPythonApplication (finalAttrs: { pytest pytest-cov-stub pytest-mock - pytest-trio ]; pythonImportsCheck = [ "gh_cherry_pick" ];