Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 21 lines 556 B view raw
1{ buildPythonPackage, fetchPypi, lib, future, pyserial, ipaddress }: 2 3buildPythonPackage rec { 4 pname = "pyspinel"; 5 version = "1.0.0a3"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "0914a662d57a14bce9df21f22711b5c9b2fef37cf461be54ed35c6e229060fd4"; 10 }; 11 12 propagatedBuildInputs = [ pyserial ipaddress future ]; 13 14 doCheck = false; 15 16 meta = { 17 description = "Interface to the OpenThread Network Co-Processor (NCP)"; 18 homepage = "https://github.com/openthread/pyspinel"; 19 maintainers = with lib.maintainers; [ gebner ]; 20 }; 21}