python3Packages.thinkingcleaner: init at 0.0.3

This commit is contained in:
Jamie Magee
2025-08-26 22:57:25 -07:00
parent 063545fa7b
commit bf4b1b86b0
2 changed files with 39 additions and 0 deletions
@@ -0,0 +1,37 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
requests,
setuptools,
}:
buildPythonPackage rec {
pname = "pythinkingcleaner";
version = "0.0.3";
pyproject = true;
src = fetchFromGitHub {
owner = "TheRealLink";
repo = "pythinkingcleaner";
tag = version;
hash = "sha256-YaHBZwJvgI3uFkFtZ4KWrKKGRPuNhBBrhCvGC65Jsks=";
};
build-system = [ setuptools ];
dependencies = [ requests ];
# Package has no tests
doCheck = false;
pythonImportsCheck = [ "pythinkingcleaner" ];
meta = {
description = "Library to control ThinkingCleaner devices";
homepage = "https://github.com/TheRealLink/pythinkingcleaner";
changelog = "https://github.com/TheRealLink/pythinkingcleaner/releases/tag/${version}";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.jamiemagee ];
};
}
+2
View File
@@ -14531,6 +14531,8 @@ self: super: with self; {
pytestcache = callPackage ../development/python-modules/pytestcache { };
pythinkingcleaner = callPackage ../development/python-modules/pythinkingcleaner { };
python-aodhclient = callPackage ../development/python-modules/python-aodhclient { };
python-apt = callPackage ../development/python-modules/python-apt { };