Diff: https://github.com/thinq-connect/pythinqconnect/compare/refs/tags/1.0.6...refs/tags/1.0.7 Changelog: https://github.com/thinq-connect/pythinqconnect/blob/1.0.7/RELEASE_NOTES.md
47 lines
954 B
Nix
47 lines
954 B
Nix
{
|
|
lib,
|
|
aiohttp,
|
|
awsiotsdk,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pyopenssl,
|
|
pythonOlder,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "thinqconnect";
|
|
version = "1.0.7";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "thinq-connect";
|
|
repo = "pythinqconnect";
|
|
tag = version;
|
|
hash = "sha256-wnlUwThmDRNosdWVvzqB3KP0LPL37+MnXXD84AeIUL8=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
aiohttp
|
|
awsiotsdk
|
|
pyopenssl
|
|
];
|
|
|
|
# Module has no tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "thinqconnect" ];
|
|
|
|
meta = {
|
|
changelog = "https://github.com/thinq-connect/pythinqconnect/blob/${src.tag}/RELEASE_NOTES.md";
|
|
description = "Module to interacting with the LG ThinQ Connect Open API";
|
|
homepage = "https://github.com/thinq-connect/pythinqconnect";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ fab ];
|
|
};
|
|
}
|