pythonPackages.samsungctl: init at 0.7.1
This commit is contained in:
parent
cc4fd57df9
commit
60cb1123b2
29
pkgs/development/python-modules/samsungctl/default.nix
Normal file
29
pkgs/development/python-modules/samsungctl/default.nix
Normal file
@ -0,0 +1,29 @@
|
||||
{ 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 ];
|
||||
};
|
||||
}
|
@ -3704,6 +3704,8 @@ in {
|
||||
|
||||
samplerate = callPackage ../development/python-modules/samplerate { };
|
||||
|
||||
samsungctl = callPackage ../development/python-modules/samsungctl { };
|
||||
|
||||
screeninfo = callPackage ../development/python-modules/screeninfo { };
|
||||
|
||||
ssdeep = callPackage ../development/python-modules/ssdeep { };
|
||||
|
Loading…
Reference in New Issue
Block a user