python3Packages.thinkingcleaner: init at 0.0.3 (#437408)

This commit is contained in:
Martin Weinelt
2025-08-28 21:59:07 +02:00
committed by GitHub
3 changed files with 41 additions and 1 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 ];
};
}
@@ -6024,7 +6024,8 @@
];
"thinkingcleaner" =
ps: with ps; [
]; # missing inputs: pythinkingcleaner
pythinkingcleaner
];
"thomson" =
ps: with ps; [
];
+2
View File
@@ -14559,6 +14559,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 { };