python3Packages.goveelights: init at 0.1.0

This commit is contained in:
Fabian Affolter
2021-12-19 11:45:03 +01:00
parent cf66057e81
commit 7ecc6a8b25
2 changed files with 39 additions and 0 deletions
@@ -0,0 +1,37 @@
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, requests
}:
buildPythonPackage rec {
pname = "goveelights";
version = "0.1.0";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-4j4iBT4PIpk6BbHwJF7+sp/PeIlHw+8dsOK1Ecfuwtc=";
};
propagatedBuildInputs = [
requests
];
# Module has no tests
doCheck = false;
pythonImportsCheck = [
"goveelights"
];
meta = with lib; {
description = "Python module for interacting with the Govee API";
homepage = "https://github.com/arcanearronax/govee_lights";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}
+2
View File
@@ -3346,6 +3346,8 @@ in {
gorilla = callPackage ../development/python-modules/gorilla { };
goveelights = callPackage ../development/python-modules/goveelights { };
gpapi = callPackage ../development/python-modules/gpapi { };
gplaycli = callPackage ../development/python-modules/gplaycli { };