Merge pull request #83582 from colemickens/nixpkgs-ha-pkgs-roku

pythonPackages.roku: init at v4.1
This commit is contained in:
Jörg Thalheim 2020-03-31 11:46:04 +01:00 committed by GitHub
commit 5371ea9702
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 30 additions and 1 deletions

1
.gitignore vendored
View file

@ -11,6 +11,7 @@ result-*
.version-suffix
.DS_Store
.mypy_cache
/pkgs/development/libraries/qt-5/*/tmp/
/pkgs/desktops/kde-5/*/tmp/

View file

@ -0,0 +1,26 @@
{ stdenv, fetchFromGitHub, buildPythonPackage, requests, pytest, flask, isPy27
}:
buildPythonPackage rec {
version = "4.1";
pname = "roku";
disabled = isPy27;
src = fetchFromGitHub {
owner = "jcarbaugh";
repo = "python-roku";
rev = "v${version}";
sha256 = "09mq59kjll7gj1srw4qc921ncsm7cld95sbz5v3p2bwmgckpqza7";
};
propagatedBuildInputs = [ requests ];
checkInputs = [ pytest flask ];
pythonImportsCheck = [ "roku" ];
meta = with stdenv.lib; {
description = "Screw remotes. Control your Roku with Python.";
homepage = "https://github.com/jcarbaugh/python-roku";
license = licenses.bsd3;
};
}

View file

@ -640,7 +640,7 @@
"ripple" = ps: with ps; [ ]; # missing inputs: python-ripple-api
"rmvtransport" = ps: with ps; [ ]; # missing inputs: PyRMVtransport
"rocketchat" = ps: with ps; [ ]; # missing inputs: rocketchat-API
"roku" = ps: with ps; [ ]; # missing inputs: roku
"roku" = ps: with ps; [ roku];
"roomba" = ps: with ps; [ ]; # missing inputs: roombapy
"route53" = ps: with ps; [ boto3]; # missing inputs: ipify
"rova" = ps: with ps; [ ]; # missing inputs: rova

View file

@ -3301,6 +3301,8 @@ in {
rethinkdb = callPackage ../development/python-modules/rethinkdb { };
roku = callPackage ../development/python-modules/roku { };
roman = callPackage ../development/python-modules/roman { };
rotate-backups = callPackage ../tools/backup/rotate-backups { };