biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / video / kodi / addons / netflix / default.nix
blob3b3aa97d53432c5dba1b86276287a9a246928e08
1 { lib, buildKodiAddon, fetchFromGitHub, signals, inputstream-adaptive, inputstreamhelper, requests, myconnpy }:
3 buildKodiAddon rec {
4   pname = "netflix";
5   namespace = "plugin.video.netflix";
6   version = "1.23.3";
8   src = fetchFromGitHub {
9     owner = "CastagnaIT";
10     repo = namespace;
11     rev = "v${version}";
12     hash = "sha256-tve7E7dK60BIHETdwt9hD3/5eEdJB6c6rhw4oDoLAKM=";
13   };
15   propagatedBuildInputs = [
16     signals
17     inputstream-adaptive
18     inputstreamhelper
19     requests
20     myconnpy
21   ];
23   meta = with lib; {
24     homepage = "https://github.com/CastagnaIT/plugin.video.netflix";
25     description = "Netflix VOD Services Add-on";
26     license = licenses.mit;
27     maintainers = teams.kodi.members ++ [ maintainers.pks ];
28   };