2021-03-20 14:44:57 +00:00
|
|
|
{ lib, buildKodiAddon, fetchFromGitHub, signals, inputstream-adaptive, inputstreamhelper, requests, myconnpy }:
|
|
|
|
|
2021-03-16 00:33:38 +00:00
|
|
|
buildKodiAddon rec {
|
|
|
|
pname = "netflix";
|
|
|
|
namespace = "plugin.video.netflix";
|
2021-07-18 17:26:26 +01:00
|
|
|
version = "1.16.2";
|
2021-03-16 00:33:38 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "CastagnaIT";
|
|
|
|
repo = namespace;
|
|
|
|
rev = "v${version}";
|
2021-07-18 17:26:26 +01:00
|
|
|
sha256 = "0yycwm8vrpkr4fsbf713mhpnaxfd849nhzp5r1898sb9vldab4xk";
|
2021-03-16 00:33:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
signals
|
2021-03-20 14:44:57 +00:00
|
|
|
inputstream-adaptive
|
2021-03-16 00:33:38 +00:00
|
|
|
inputstreamhelper
|
|
|
|
requests
|
|
|
|
myconnpy
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/CastagnaIT/plugin.video.netflix";
|
|
|
|
description = "Netflix VOD Services Add-on";
|
|
|
|
license = licenses.mit;
|
2021-03-18 23:52:44 +00:00
|
|
|
maintainers = teams.kodi.members;
|
2021-03-16 00:33:38 +00:00
|
|
|
};
|
|
|
|
}
|