- Updated `flake.nix` to streamline output definitions and improve readability. - Refactored NixOS module configurations in `nixos/lidarr-mb-gap.nix` for better structure and clarity. - Simplified the package import process in `nix/package.nix` by removing unnecessary parameters. - Enhanced example configurations in `nixos/EXAMPLE_CONFIG.nix` to align with the new structure.
20 lines
429 B
Nix
20 lines
429 B
Nix
{ pkgs, src }:
|
|
|
|
pkgs.python3Packages.buildPythonApplication {
|
|
pname = "lidarr-mb-gap";
|
|
version = "1.0.0";
|
|
inherit src;
|
|
format = "pyproject";
|
|
nativeBuildInputs = with pkgs.python3Packages; [
|
|
setuptools
|
|
];
|
|
propagatedBuildInputs = with pkgs.python3Packages; [
|
|
requests
|
|
python-dotenv
|
|
];
|
|
meta = {
|
|
mainProgram = "lidarr-mb-gap";
|
|
description = "Lidarr to MusicBrainz Missing Albums Finder";
|
|
};
|
|
}
|