From 0f248b11194907c2e656a9953c4a8a67949a5c68 Mon Sep 17 00:00:00 2001 From: benex Date: Mon, 18 Nov 2024 20:04:57 +0300 Subject: [PATCH] chore: update flake.nix to include external deps and all python deps --- flake.nix | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index bd5a5ec..aa41315 100644 --- a/flake.nix +++ b/flake.nix @@ -10,11 +10,11 @@ let pkgs = import nixpkgs { inherit system; }; - python = pkgs.python310; + python = pkgs.python312; pythonPackages = python.pkgs; fastanimeEnv = pythonPackages.buildPythonApplication { pname = "fastanime"; - version = "2.7.5"; + version = "2.7.9"; src = ./.; @@ -32,6 +32,9 @@ yt-dlp dbus-python hatchling + plyer + mpv + fastapi ]; # Ensure compatibility with the pyproject.toml @@ -47,6 +50,10 @@ buildInputs = [ fastanimeEnv pythonPackages.hatchling + pkgs.mpv + pkgs.libmpv + pkgs.fzf + pkgs.rofi ]; }; });