pythonPackages.roku: init at v4.1

This commit is contained in:
Cole Mickens 2020-03-28 09:49:05 +00:00
parent b310f564c2
commit 53dc9d6751
3 changed files with 29 additions and 0 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

@ -3299,6 +3299,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 { };