about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/miauth/default.nix
blob: 380fe8e23e1fcc413d36a0f6f837a79d277be2bf (plain) (blame)
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
, fetchFromGitHub
, setuptools
, wheel
, bluepy
, pythonOlder
, cryptography
}:

buildPythonPackage rec {
  pname = "miauth";
  version = "0.9.1";
  pyproject = true;

  disabled = pythonOlder "3.10";

  src = fetchFromGitHub {
    owner = "dnandha";
    repo = "miauth";
    # Release is not tagged properly, https://github.com/dnandha/miauth/issues/15
    # rev = "refs/tags/${version}";
    rev = "refs/tags/release";
    hash = "sha256-+aoY0Eyd9y7xQTA3uSC6YIZisViilsHlFaOXmhPMcBY=";
  };

  nativeBuildInputs = [
    setuptools
    wheel
  ];

  propagatedBuildInputs = [
    bluepy
    cryptography
  ];

  pythonImportsCheck = [
    "miauth"
  ];

  meta = with lib; {
    description = "Authenticate and interact with Xiaomi devices over BLE";
    homepage = "https://github.com/dnandha/miauth";
    license = licenses.agpl3Only;
    maintainers = with maintainers; [ fab ];
  };
}