Merge pull request #120284 from mweinelt/python/rokuecp
This commit is contained in:
commit
02f2328b67
41
pkgs/development/python-modules/rokuecp/default.nix
Normal file
41
pkgs/development/python-modules/rokuecp/default.nix
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, aiohttp
|
||||||
|
, xmltodict
|
||||||
|
, yarl
|
||||||
|
, aresponses
|
||||||
|
, pytest-asyncio
|
||||||
|
, pytestCheckHook
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "rokuecp";
|
||||||
|
version = "0.8.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "ctalkington";
|
||||||
|
repo = "python-rokuecp";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "02mbmwljcvqj3ksj2irdm8849lcxzwa6fycgjqb0i75cgidxpans";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
aiohttp
|
||||||
|
xmltodict
|
||||||
|
yarl
|
||||||
|
];
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
aresponses
|
||||||
|
pytestCheckHook
|
||||||
|
pytest-asyncio
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Asynchronous Python client for Roku (ECP)";
|
||||||
|
homepage = "https://github.com/ctalkington/python-rokuecp";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ ];
|
||||||
|
};
|
||||||
|
}
|
@ -692,7 +692,7 @@
|
|||||||
"rituals_perfume_genie" = ps: with ps; [ pyrituals ];
|
"rituals_perfume_genie" = ps: with ps; [ pyrituals ];
|
||||||
"rmvtransport" = ps: with ps; [ PyRMVtransport ];
|
"rmvtransport" = ps: with ps; [ PyRMVtransport ];
|
||||||
"rocketchat" = ps: with ps; [ ]; # missing inputs: rocketchat-API
|
"rocketchat" = ps: with ps; [ ]; # missing inputs: rocketchat-API
|
||||||
"roku" = ps: with ps; [ ]; # missing inputs: rokuecp
|
"roku" = ps: with ps; [ rokuecp ];
|
||||||
"roomba" = ps: with ps; [ roombapy ];
|
"roomba" = ps: with ps; [ roombapy ];
|
||||||
"roon" = ps: with ps; [ ]; # missing inputs: roonapi
|
"roon" = ps: with ps; [ ]; # missing inputs: roonapi
|
||||||
"route53" = ps: with ps; [ boto3 ];
|
"route53" = ps: with ps; [ boto3 ];
|
||||||
|
@ -342,6 +342,7 @@ in with py.pkgs; buildPythonApplication rec {
|
|||||||
"rest_command"
|
"rest_command"
|
||||||
"rituals_perfume_genie"
|
"rituals_perfume_genie"
|
||||||
"rmvtransport"
|
"rmvtransport"
|
||||||
|
"roku"
|
||||||
"rss_feed_template"
|
"rss_feed_template"
|
||||||
"ruckus_unleashed"
|
"ruckus_unleashed"
|
||||||
"safe_mode"
|
"safe_mode"
|
||||||
|
@ -7554,6 +7554,8 @@ in {
|
|||||||
|
|
||||||
roku = callPackage ../development/python-modules/roku { };
|
roku = callPackage ../development/python-modules/roku { };
|
||||||
|
|
||||||
|
rokuecp = callPackage ../development/python-modules/rokuecp { };
|
||||||
|
|
||||||
roman = callPackage ../development/python-modules/roman { };
|
roman = callPackage ../development/python-modules/roman { };
|
||||||
|
|
||||||
roombapy = callPackage ../development/python-modules/roombapy { };
|
roombapy = callPackage ../development/python-modules/roombapy { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user