blob: d32aca86884219ca1161f6fe82b95fbed6ba718c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
{
lib,
buildPythonPackage,
fetchPypi,
# build-system
setuptools,
# dependencies
bluepy,
cryptography,
# checks
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "miauth";
version = "0.9.7";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-2/4nFInpdY8fb/b+sXhgT6ZPtEgBV+KHMyLnxIp6y/U=";
};
build-system = [ setuptools ];
pythonRelaxDeps = [ "cryptography" ];
dependencies = [
bluepy
cryptography
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "miauth" ];
meta = {
description = "Authenticate and interact with Xiaomi devices over BLE";
homepage = "https://github.com/dnandha/miauth";
license = lib.licenses.agpl3Only;
maintainers = with lib.maintainers; [ fab ];
mainProgram = "miauth";
};
}
|