aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/pyspinel/default.nix
blob: dcd35132c2ed03bfa42993a69aff7c1e34532226 (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
{ lib, buildPythonPackage, fetchFromGitHub, isPy27
, future, pyserial, ipaddress
}:

buildPythonPackage rec {
  pname = "pyspinel";
  version = "unstable-2020-06-19";  # no versioned release since 2018
  disabled = isPy27;

  src = fetchFromGitHub {
    owner = "openthread";
    repo = pname;
    rev = "e0bb3f8e6f49b593ab248a75de04a71626ae8101";
    sha256 = "0nfmdkgbhmkl82dfxjpwiiarxngm6a3fvdrzpaqp60a4b17pipqg";
  };

  propagatedBuildInputs = [
    future
    ipaddress
    pyserial
  ];

  doCheck = false;
  pythonImportsCheck = [ "spinel" ];

  meta = with lib; {
    description = "Interface to the OpenThread Network Co-Processor (NCP)";
    homepage = "https://github.com/openthread/pyspinel";
    license = licenses.asl20;
    maintainers = with maintainers; [ gebner ];
  };
}