python3Packages.thinkingcleaner: init at 0.0.3 (#437408)
This commit is contained in:
@@ -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; [
|
||||
];
|
||||
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user