python3Packages.pyeverlights: init at 0.1.0
This commit is contained in:
parent
ef5cb37c30
commit
1e27d0aed3
30
pkgs/development/python-modules/pyeverlights/default.nix
Normal file
30
pkgs/development/python-modules/pyeverlights/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -6169,6 +6169,8 @@ in {
|
|||||||
|
|
||||||
python-xmp-toolkit = callPackage ../development/python-modules/python-xmp-toolkit { };
|
python-xmp-toolkit = callPackage ../development/python-modules/python-xmp-toolkit { };
|
||||||
|
|
||||||
|
pyeverlights = callPackage ../development/python-modules/pyeverlights { };
|
||||||
|
|
||||||
pytimeparse = callPackage ../development/python-modules/pytimeparse { };
|
pytimeparse = callPackage ../development/python-modules/pytimeparse { };
|
||||||
|
|
||||||
pytmx = callPackage ../development/python-modules/pytmx { };
|
pytmx = callPackage ../development/python-modules/pytmx { };
|
||||||
|
Loading…
Reference in New Issue
Block a user