Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 25 lines 745 B view raw
1{ stdenv, buildPythonPackage, fetchPypi 2, aiohttp, crccheck, pyserial, pyserial-asyncio, pycryptodome, zigpy 3, pytest }: 4 5buildPythonPackage rec { 6 pname = "zigpy-deconz"; 7 version = "0.7.0"; 8 9 nativeBuildInputs = [ pytest ]; 10 buildInputs = [ aiohttp crccheck pycryptodome ]; 11 propagatedBuildInputs = [ pyserial pyserial-asyncio zigpy ]; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "049k6lvgf6yjkinbbzm7gqrzqljk2ky9kfw8n53x8kjyfmfp71i2"; 16 }; 17 18 meta = with stdenv.lib; { 19 description = "Library which communicates with Deconz radios for zigpy"; 20 homepage = "https://github.com/zigpy/zigpy-deconz"; 21 license = licenses.gpl3Plus; 22 maintainers = with maintainers; [ etu ]; 23 platforms = platforms.linux; 24 }; 25}