Merge pull request #108472 from fabaff/pyeverlights
python3Packages.pyeverlights: init at 0.1.0
This commit is contained in:
commit
1716f373cf
|
@ -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 ];
|
||||
};
|
||||
}
|
|
@ -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; [ ];
|
||||
|
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in New Issue