mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-23 20:44:12 +00:00
python312Packages.thinqconnect: init at 0.9.7-unstable-2024-09-09
Module to interacting with the LG ThinQ Connect Open API https://github.com/thinq-connect/pythinqconnect
This commit is contained in:
parent
fb4c581e41
commit
e2ad70f282
46
pkgs/development/python-modules/thinqconnect/default.nix
Normal file
46
pkgs/development/python-modules/thinqconnect/default.nix
Normal file
@ -0,0 +1,46 @@
|
||||
{
|
||||
lib,
|
||||
aiohttp,
|
||||
awsiotsdk,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
pyopenssl,
|
||||
pythonOlder,
|
||||
setuptools,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pythinqconnect";
|
||||
version = "0.9.7-unstable-2024-09-09";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.10";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "thinq-connect";
|
||||
repo = "pythinqconnect";
|
||||
# https://github.com/thinq-connect/pythinqconnect/issues/1
|
||||
rev = "39d535a2a5d1067a110eea37ae92002d0793b7e9";
|
||||
hash = "sha256-+nQAUqg5rB2eJgPBJJR8NsQ1O2Wb4UsbBQVPir1jyAU=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [
|
||||
aiohttp
|
||||
awsiotsdk
|
||||
pyopenssl
|
||||
];
|
||||
|
||||
# Module has no tests
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "thinqconnect" ];
|
||||
|
||||
meta = {
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -15409,6 +15409,8 @@ self: super: with self; {
|
||||
inherit (pkgs.darwin.apple_sdk.frameworks) Accelerate CoreFoundation CoreGraphics CoreVideo;
|
||||
};
|
||||
|
||||
thinqconnect = callPackage ../development/python-modules/thinqconnect { };
|
||||
|
||||
thorlabspm100 = callPackage ../development/python-modules/thorlabspm100 { };
|
||||
|
||||
threadloop = callPackage ../development/python-modules/threadloop { };
|
||||
|
Loading…
Reference in New Issue
Block a user