python3Packages.thinkingcleaner: init at 0.0.3

Changed files
+39
pkgs
development
python-modules
pythinkingcleaner
top-level
+37
pkgs/development/python-modules/pythinkingcleaner/default.nix
···
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + requests, 6 + setuptools, 7 + }: 8 + 9 + buildPythonPackage rec { 10 + pname = "pythinkingcleaner"; 11 + version = "0.0.3"; 12 + pyproject = true; 13 + 14 + src = fetchFromGitHub { 15 + owner = "TheRealLink"; 16 + repo = "pythinkingcleaner"; 17 + tag = version; 18 + hash = "sha256-YaHBZwJvgI3uFkFtZ4KWrKKGRPuNhBBrhCvGC65Jsks="; 19 + }; 20 + 21 + build-system = [ setuptools ]; 22 + 23 + dependencies = [ requests ]; 24 + 25 + # Package has no tests 26 + doCheck = false; 27 + 28 + pythonImportsCheck = [ "pythinkingcleaner" ]; 29 + 30 + meta = { 31 + description = "Library to control ThinkingCleaner devices"; 32 + homepage = "https://github.com/TheRealLink/pythinkingcleaner"; 33 + changelog = "https://github.com/TheRealLink/pythinkingcleaner/releases/tag/${version}"; 34 + license = lib.licenses.mit; 35 + maintainers = [ lib.maintainers.jamiemagee ]; 36 + }; 37 + }
+2
pkgs/top-level/python-packages.nix
··· 14531 14532 pytestcache = callPackage ../development/python-modules/pytestcache { }; 14533 14534 python-aodhclient = callPackage ../development/python-modules/python-aodhclient { }; 14535 14536 python-apt = callPackage ../development/python-modules/python-apt { };
··· 14531 14532 pytestcache = callPackage ../development/python-modules/pytestcache { }; 14533 14534 + pythinkingcleaner = callPackage ../development/python-modules/pythinkingcleaner { }; 14535 + 14536 python-aodhclient = callPackage ../development/python-modules/python-aodhclient { }; 14537 14538 python-apt = callPackage ../development/python-modules/python-apt { };