python312Packages.llama-index: 0.12.9 -> 0.12.9.post1 (#371957)
[NixPkgs.git] / pkgs / applications / video / kodi / addons / steam-library / default.nix
blobe4434813c37c89bd4e27b024d8ceb2454b6d37a0
2   lib,
3   buildKodiAddon,
4   fetchFromGitHub,
5   requests,
6   requests-cache,
7   routing,
8 }:
10 buildKodiAddon rec {
11   pname = "steam-library";
12   namespace = "plugin.program.steam.library";
13   version = "0.9.0";
15   src = fetchFromGitHub {
16     owner = "aanderse";
17     repo = namespace;
18     rev = "v${version}";
19     sha256 = "sha256-LVdFih0n/lkjyaYf8jw0IFlcDiXXOtUH2N9OduV1H9Q=";
20   };
22   propagatedBuildInputs = [
23     requests
24     requests-cache
25     routing
26   ];
28   meta = with lib; {
29     homepage = "https://github.com/aanderse/plugin.program.steam.library";
30     description = "View your entire Steam library right from Kodi";
31     license = licenses.gpl3Plus;
32     maintainers = teams.kodi.members;
33   };