mini-calc: 3.3.3 -> 3.3.5 (#372274)
[NixPkgs.git] / pkgs / applications / video / kodi / addons / netflix / default.nix
blobf40dc45da27eb746ac4320580454ddf50a041c88
2   lib,
3   buildKodiAddon,
4   fetchFromGitHub,
5   signals,
6   inputstream-adaptive,
7   inputstreamhelper,
8   requests,
9   myconnpy,
12 buildKodiAddon rec {
13   pname = "netflix";
14   namespace = "plugin.video.netflix";
15   version = "1.23.3";
17   src = fetchFromGitHub {
18     owner = "CastagnaIT";
19     repo = namespace;
20     rev = "v${version}";
21     hash = "sha256-tve7E7dK60BIHETdwt9hD3/5eEdJB6c6rhw4oDoLAKM=";
22   };
24   propagatedBuildInputs = [
25     signals
26     inputstream-adaptive
27     inputstreamhelper
28     requests
29     myconnpy
30   ];
32   meta = with lib; {
33     homepage = "https://github.com/CastagnaIT/plugin.video.netflix";
34     description = "Netflix VOD Services Add-on";
35     license = licenses.mit;
36     maintainers = teams.kodi.members ++ [ maintainers.pks ];
37   };