From 49e1c9c9a4d9f686068ba50f73765e030de42c93 Mon Sep 17 00:00:00 2001 From: Philip Johansson Date: Fri, 3 Apr 2026 20:02:21 +0200 Subject: [PATCH] qbit-manage: 4.6.5 -> 4.7.0 --- pkgs/by-name/qb/qbit-manage/package.nix | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/pkgs/by-name/qb/qbit-manage/package.nix b/pkgs/by-name/qb/qbit-manage/package.nix index e3dc8f09d75f..13cf1324639e 100644 --- a/pkgs/by-name/qb/qbit-manage/package.nix +++ b/pkgs/by-name/qb/qbit-manage/package.nix @@ -8,22 +8,20 @@ }: python3Packages.buildPythonApplication rec { pname = "qbit-manage"; - version = "4.6.5"; + version = "4.7.0"; src = fetchFromGitHub { owner = "StuffAnThings"; repo = "qbit_manage"; tag = "v${version}"; - hash = "sha256-JCsbf2mPRhs7Mbekl946G/y/CSNSSvQBLvlwVy/Avcg="; + hash = "sha256-cPN4GhB7TuhiGau8Nb9hVNubF6fppyS2tuFGJ+spPaI="; }; pyproject = true; build-system = [ python3Packages.setuptools ]; postPatch = '' - substituteInPlace pyproject.toml \ - --replace "==" ">=" \ - --replace "bencodepy" "bencode.py" + substituteInPlace pyproject.toml --replace "==" ">=" ''; dependencies = with python3Packages; [ @@ -43,10 +41,9 @@ python3Packages.buildPythonApplication rec { ]; pythonRelaxDeps = [ + "croniter" "fastapi" - "gitpython" - "humanize" - "ruamel.yaml" + "requests" "uvicorn" ];