python3Packages.pyeverlights: init at 0.1.0

This commit is contained in:
Fabian Affolter 2021-01-05 13:17:26 +01:00
parent ef5cb37c30
commit 1e27d0aed3
2 changed files with 32 additions and 0 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

@ -6169,6 +6169,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 { };