This commit is contained in:
2025-08-05 14:03:16 +03:00
parent 6a62963bf4
commit 9b950e5cc6
2 changed files with 25 additions and 21 deletions
+2 -1
View File
@@ -6,7 +6,8 @@
...
}:
let
depsOverlay = import ./dependencies.nix { # ./dependencies-full.nix if broken
depsOverlay = import ./dependencies.nix {
# ./dependencies-full.nix if broken
inherit (pkgs) fetchurl fetchgit fetchhg;
inherit pkgs;
};
+6 -3
View File
@@ -6,14 +6,16 @@
...
}:
let
depsOverlay = import ./dependencies.nix { # ./dependencies-full.nix if broken
depsOverlay = import ./dependencies.nix {
# ./dependencies-full.nix if broken
inherit (pkgs) fetchurl fetchgit fetchhg;
inherit pkgs;
};
python3 = pkgs.python3.override {
packageOverrides = depsOverlay;
};
beetsEnv = python3.withPackages (ps: with pkgs.python313Packages; [
beetsEnv = python3.withPackages (
ps: with pkgs.python313Packages; [
#pkgs.beets # Из nixpkgs (проверь версию!) или оверлея
beautifulsoup4 # Из nixpkgs
certifi # Из nixpkgs
@@ -31,7 +33,8 @@ let
anyio
ps.python3-discogs-client
ps.beetcamp # Из оверлея
]);
]
);
in
{
systemd.tmpfiles.rules = [