python3Packages.wled: init at 0.4.4
This commit is contained in:
parent
4dfbf286e3
commit
0d0c9769b0
47
pkgs/development/python-modules/wled/default.nix
Normal file
47
pkgs/development/python-modules/wled/default.nix
Normal file
@ -0,0 +1,47 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, pythonOlder
|
||||
, fetchFromGitHub
|
||||
, aiohttp
|
||||
, backoff
|
||||
, packaging
|
||||
, yarl
|
||||
, aresponses
|
||||
, pytest-asyncio
|
||||
, pytestCheckHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "wled";
|
||||
version = "0.4.4";
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "frenck";
|
||||
repo = "python-wled";
|
||||
rev = "v${version}";
|
||||
sha256 = "1adh23v4c9kia3ddqdq0brksd5rhgh4ff7l5hil8klx4dmkrjfz3";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
aiohttp
|
||||
backoff
|
||||
packaging
|
||||
yarl
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
aresponses
|
||||
pytest-asyncio
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportCheck = [ "wled" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Asynchronous Python client for WLED";
|
||||
homepage = "https://github.com/frenck/python-wled";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ hexa ];
|
||||
};
|
||||
}
|
@ -7548,6 +7548,8 @@ in {
|
||||
|
||||
willow = callPackage ../development/python-modules/willow { };
|
||||
|
||||
wled = callPackage ../development/python-modules/wled { };
|
||||
|
||||
word2vec = callPackage ../development/python-modules/word2vec { };
|
||||
|
||||
wordcloud = callPackage ../development/python-modules/wordcloud { };
|
||||
|
Loading…
Reference in New Issue
Block a user