properly overlayed qbittorrent-api

This commit is contained in:
2025-05-24 14:32:49 -06:00
parent cbc92f1d0d
commit 27aa640418
3 changed files with 23 additions and 3 deletions

View File

@@ -2,9 +2,14 @@
lib,
config,
pkgs,
inputs,
...
}:
let
pkgsU = import inputs.nixpkgs-unstable {
system = "x86_64-linux";
config.allowUnfree = true;
};
qbit_manage_env = pkgs.python3.withPackages (
ps:
builtins.attrValues {
@@ -13,13 +18,13 @@ let
gitpython
humanize
pytimeparse2
qbittorrent-api
requests
retrying
ruamel-yaml
schedule
bencode-py
;
inherit (pkgsU.python3Packages) qbittorrent-api;
}
);
in