python3Packages.zigpy-cc: init at 0.4.4

This commit is contained in:
Elis Hirwing 2020-05-23 21:53:09 +02:00 committed by Matt Votava
parent 2c004e0c53
commit 29b377db27
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ stdenv, buildPythonPackage, fetchPypi
, pyserial, pyserial-asyncio, zigpy
, asynctest, pytest, pytest-asyncio }:
buildPythonPackage rec {
pname = "zigpy-cc";
version = "0.4.4";
propagatedBuildInputs = [ pyserial pyserial-asyncio zigpy ];
checkInputs = [ asynctest pytest pytest-asyncio ];
src = fetchPypi {
inherit pname version;
sha256 = "117a9xak4y5nksfk9rgvzd6l7hscvzspl1wf3gydyq2lc7b3ggnl";
};
meta = with stdenv.lib; {
description = "A library which communicates with Texas Instruments CC2531 radios for zigpy";
homepage = "http://github.com/sanyatuning/zigpy-cc";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ etu mvnetbiz ];
platforms = platforms.linux;
};
}

View File

@ -2689,6 +2689,8 @@ in {
zigpy = callPackage ../development/python-modules/zigpy { };
zigpy-cc = callPackage ../development/python-modules/zigpy-cc { };
zigpy-deconz = callPackage ../development/python-modules/zigpy-deconz { };
digital-ocean = callPackage ../development/python-modules/digitalocean { };