159e378cbb
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
33 lines
737 B
Nix
33 lines
737 B
Nix
{
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
lib,
|
|
loguru,
|
|
rpyc,
|
|
}:
|
|
buildPythonPackage rec {
|
|
pname = "streamcontroller-plugin-tools";
|
|
version = "2.0.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "StreamController";
|
|
repo = "streamcontroller-plugin-tools";
|
|
rev = version;
|
|
hash = "sha256-dQZPRSzHhI3X+Pf7miwJlECGFgUfp68PtvwXAmpq5/s=";
|
|
};
|
|
|
|
dependencies = [
|
|
loguru
|
|
rpyc
|
|
];
|
|
|
|
pythonImportsCheck = [ "streamcontroller_plugin_tools" ];
|
|
|
|
meta = with lib; {
|
|
description = "StreamController plugin tools";
|
|
homepage = "https://github.com/StreamController/streamcontroller-plugin-tools";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ sifmelcara ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|