mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
pythonPackages.pyspinel: init at 1.0.0a3
This commit is contained in:
parent
b62a4c0d70
commit
fbfc8b1732
21
pkgs/development/python-modules/pyspinel/default.nix
Normal file
21
pkgs/development/python-modules/pyspinel/default.nix
Normal file
@ -0,0 +1,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 ];
|
||||
};
|
||||
}
|
@ -780,6 +780,8 @@ in {
|
||||
slurm = pkgs.slurm;
|
||||
};
|
||||
|
||||
pyspinel = callPackage ../development/python-modules/pyspinel {};
|
||||
|
||||
pyssim = callPackage ../development/python-modules/pyssim { };
|
||||
|
||||
pystache = callPackage ../development/python-modules/pystache { };
|
||||
|
Loading…
Reference in New Issue
Block a user