1{ 2 buildPythonPackage, 3 fetchFromGitHub, 4 lib, 5 loguru, 6 rpyc, 7}: 8buildPythonPackage rec { 9 pname = "streamcontroller-plugin-tools"; 10 version = "2.0.0"; 11 12 src = fetchFromGitHub { 13 owner = "StreamController"; 14 repo = "streamcontroller-plugin-tools"; 15 rev = version; 16 hash = "sha256-dQZPRSzHhI3X+Pf7miwJlECGFgUfp68PtvwXAmpq5/s="; 17 }; 18 19 dependencies = [ 20 loguru 21 rpyc 22 ]; 23 24 pythonImportsCheck = [ "streamcontroller_plugin_tools" ]; 25 26 meta = with lib; { 27 description = "StreamController plugin tools"; 28 homepage = "https://github.com/StreamController/streamcontroller-plugin-tools"; 29 license = licenses.gpl3; 30 maintainers = with maintainers; [ sifmelcara ]; 31 platforms = platforms.linux; 32 }; 33}