30 lines
617 B
Nix
30 lines
617 B
Nix
|
{ lib, buildPythonPackage, fetchPypi
|
||
|
, websocket_client
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "samsungctl";
|
||
|
version = "0.7.1";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
sha256 = "0ipz3fd65rqkxlb02sql0awc3vnslrwb2pfrsnpfnf8bfgxpbh9g";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
websocket_client
|
||
|
];
|
||
|
|
||
|
# no tests
|
||
|
doCheck = false;
|
||
|
|
||
|
pythonImportsCheck = [ "samsungctl" ];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Remote control Samsung televisions via a TCP/IP connection";
|
||
|
homepage = "https://github.com/Ape/samsungctl";
|
||
|
license = licenses.mit;
|
||
|
maintainers = with maintainers; [ hexa ];
|
||
|
};
|
||
|
}
|