b5f92a349c
GitOrigin-RevId: 7c9cc5a6e5d38010801741ac830a3f8fd667a7a0
71 lines
1.3 KiB
Nix
71 lines
1.3 KiB
Nix
{ lib
|
|
, aiofiles
|
|
, aiohttp
|
|
, authcaptureproxy
|
|
, backoff
|
|
, beautifulsoup4
|
|
, buildPythonPackage
|
|
, certifi
|
|
, cryptography
|
|
, fetchFromGitLab
|
|
, poetry-core
|
|
, pyotp
|
|
, pythonOlder
|
|
, pythonRelaxDepsHook
|
|
, requests
|
|
, simplejson
|
|
, yarl
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "alexapy";
|
|
version = "1.27.6";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.10";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "keatontaylor";
|
|
repo = "alexapy";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-CKaxdKuvie88nn1LSTxCLCdbr9bzD6MtvgSU9lplT/8=";
|
|
};
|
|
|
|
pythonRelaxDeps = [
|
|
"aiofiles"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
poetry-core
|
|
pythonRelaxDepsHook
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
aiofiles
|
|
aiohttp
|
|
authcaptureproxy
|
|
backoff
|
|
beautifulsoup4
|
|
certifi
|
|
cryptography
|
|
pyotp
|
|
requests
|
|
simplejson
|
|
yarl
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"alexapy"
|
|
];
|
|
|
|
# Module has no tests (only a websocket test which seems unrelated to the module)
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Python Package for controlling Alexa devices (echo dot, etc) programmatically";
|
|
homepage = "https://gitlab.com/keatontaylor/alexapy";
|
|
changelog = "https://gitlab.com/keatontaylor/alexapy/-/blob/v${version}/CHANGELOG.md";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|