Merge pull request #108472 from fabaff/pyeverlights

python3Packages.pyeverlights: init at 0.1.0
This commit is contained in:
Martin Weinelt 2021-01-05 17:33:55 +01:00 committed by GitHub
commit 1716f373cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 33 additions and 1 deletions

View File

@ -0,0 +1,30 @@
{ lib
, aiohttp
, buildPythonPackage
, fetchFromGitHub
}:
buildPythonPackage rec {
pname = "pyeverlights";
version = "0.1.0";
src = fetchFromGitHub {
owner = "joncar";
repo = pname;
rev = version;
sha256 = "16xpq933j8yydq78fnf4f7ivyw5a45ix4mfycpmm91aj549p6pm0";
};
propagatedBuildInputs = [ aiohttp ];
# no tests are present
doCheck = false;
pythonImportsCheck = [ "pyeverlights" ];
meta = with lib; {
description = "Python module for interfacing with an EverLights control box";
homepage = "https://github.com/joncar/pyeverlights";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}

View File

@ -234,7 +234,7 @@
"essent" = ps: with ps; [ ]; # missing inputs: PyEssent
"etherscan" = ps: with ps; [ ]; # missing inputs: python-etherscan-api
"eufy" = ps: with ps; [ ]; # missing inputs: lakeside
"everlights" = ps: with ps; [ ]; # missing inputs: pyeverlights
"everlights" = ps: with ps; [ pyeverlights ];
"evohome" = ps: with ps; [ ]; # missing inputs: evohome-async
"ezviz" = ps: with ps; [ ]; # missing inputs: pyezviz
"facebook" = ps: with ps; [ ];

View File

@ -6171,6 +6171,8 @@ in {
python-xmp-toolkit = callPackage ../development/python-modules/python-xmp-toolkit { };
pyeverlights = callPackage ../development/python-modules/pyeverlights { };
pytimeparse = callPackage ../development/python-modules/pytimeparse { };
pytmx = callPackage ../development/python-modules/pytmx { };