bugfix: builtins.path

This commit is contained in:
Danilo Reyes 2024-11-09 16:43:30 -06:00
parent 2c377b9664
commit b0ac83658e
5 changed files with 16 additions and 14 deletions

View File

@ -20,17 +20,19 @@ let
};
qbit_manage_env = pkgs.python3.withPackages (
ps:
[
ps.croniter
ps.gitpython
ps.humanize
ps.pytimeparse2
ps.qbittorrent-api
ps.requests
ps.retrying
ps.ruamel-yaml
ps.schedule
]
{
inherit (ps)
croniter
gitpython
humanize
pytimeparse2
qbittorrent-api
requests
retrying
ruamel-yaml
schedule
;
}
++ [ bencodepy ]
);
in

View File

@ -23,6 +23,7 @@
version = "0.4.1";
in
{
inherit pname version;
src = pkgs.python3Packages.fetchPypi {
inherit pname version;
sha256 = "sha256-7eVqbLpMHS1sBw2vYS4cTtyVdnnknGtEI8190VlXflk=";

View File

@ -1,9 +1,9 @@
{
pname,
version,
src,
branch,
compat-list,
src,
lib,
stdenv,
cmake,

View File

@ -10,7 +10,7 @@ let
in
python3Packages.buildPythonApplication {
inherit pname version;
src = {
src = builtins.path {
path = ../../scripts/download/.;
name = "${pname}-${version}";
};

View File

@ -14,7 +14,6 @@
let
filepicker = callPackage ./filepicker.nix { };
in
buildNpmPackage (
let