nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 20.03 24 lines 641 B view raw
1{ stdenv, buildPythonPackage, fetchPypi 2, aiohttp, zigpy 3, pytest }: 4 5buildPythonPackage rec { 6 pname = "zha-quirks"; 7 version = "0.0.30"; 8 9 nativeBuildInputs = [ pytest ]; 10 buildInputs = [ aiohttp zigpy ]; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "00731a9b9c58c4e59f6765ac0cec5e2301bdda28ef19e00e2ba752be457a61b9"; 15 }; 16 17 meta = with stdenv.lib; { 18 description = "ZHA Device Handlers are custom quirks implementations for Zigpy"; 19 homepage = "https://github.com/dmulcahey/zha-device-handlers"; 20 license = licenses.asl20; 21 maintainers = with maintainers; [ etu ]; 22 platforms = platforms.linux; 23 }; 24}