chore: update flake.nix to include external deps and all python deps

This commit is contained in:
benex
2024-11-18 20:04:57 +03:00
parent 871d5cf758
commit 0f248b1119

View File

@@ -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
];
};
});