- Added `meta` section to `nix/package.nix` to define the main program and provide a description for the lidarr-mb-gap application, enhancing clarity and usability for users and developers.
21 lines
435 B
Nix
21 lines
435 B
Nix
{ pkgs, lib, 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";
|
|
};
|
|
}
|
|
|