aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/HAP-python/default.nix
blob: 267fcccd8d4b506e86c1727a4224c2d73a709606 (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, fetchFromGitHub, isPy3k, curve25519-donna, ed25519
, cryptography, ecdsa, zeroconf, pytest }:

buildPythonPackage rec {
  pname = "HAP-python";
  version = "3.0.0";

  # pypi package does not include tests
  src = fetchFromGitHub {
    owner = "ikalchev";
    repo = pname;
    rev = "v${version}";
    sha256 = "07s1kjm9cz4m4ksj506la1ks3dq2b5mk412rjj9rpj98b0mxrr84";
  };

  disabled = !isPy3k;

  propagatedBuildInputs = [
    curve25519-donna
    ed25519
    cryptography
    ecdsa
    zeroconf
  ];

  checkInputs = [ pytest ];

  #disable tests needing network
  checkPhase = ''
    pytest -k 'not test_persist \
    and not test_setup_endpoints \
    and not test_auto_add_aid_mac \
    and not test_service_callbacks \
    and not test_send_events \
    and not test_not_standalone_aid \
    and not test_start_stop_async_acc \
    and not test_external_zeroconf \
    and not test_start_stop_sync_acc'
  '';

  meta = with lib; {
    homepage = "https://github.com/ikalchev/HAP-python";
    description = "HomeKit Accessory Protocol implementation in python";
    license = licenses.asl20;
    maintainers = with maintainers; [ oro ];
  };
}