Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / emulated-roku / default.nix
blob3a9da2ba8e372a28dfc72fef192699b5d1efd03d
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , aiohttp
5 }:
7 buildPythonPackage rec {
8   pname = "emulated-roku";
9   version = "0.2.1";
11   src = fetchFromGitHub {
12     owner = "mindigmarton";
13     repo = "emulated_roku";
14     rev = version;
15     sha256 = "02cbg5wrph19p6x44jlw6cn3jli0kwbgfh6klb3c4k5jfrkhgghw";
16   };
18   propagatedBuildInputs = [
19     aiohttp
20   ];
22   # no tests implemented
23   doCheck = false;
25   pythonImportsCheck = [ "emulated_roku" ];
27   meta = with lib; {
28     description = "Library to emulate a roku server to serve as a proxy for remotes such as Harmony";
29     homepage = "https://github.com/mindigmarton/emulated_roku";
30     license = licenses.mit;
31     maintainers = with maintainers; [ dotlambda ];
32   };