about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyspinel/default.nix
blob: 990e2b28bd89ceb34dc719cf7ca041e76d208c0a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ buildPythonPackage, fetchPypi, lib, future, pyserial, ipaddress }:

buildPythonPackage rec {
  pname = "pyspinel";
  version = "1.0.0a3";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0914a662d57a14bce9df21f22711b5c9b2fef37cf461be54ed35c6e229060fd4";
  };

  propagatedBuildInputs = [ pyserial ipaddress future ];

  doCheck = false;

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