evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / streamcontroller-plugin-tools / default.nix
blob1375f6eae7859940b83c170d992bcc6d3cef8a48
2   buildPythonPackage,
3   fetchFromGitHub,
4   lib,
5   loguru,
6   rpyc,
7 }:
8 buildPythonPackage rec {
9   pname = "streamcontroller-plugin-tools";
10   version = "2.0.0";
12   src = fetchFromGitHub {
13     owner = "StreamController";
14     repo = "streamcontroller-plugin-tools";
15     rev = version;
16     hash = "sha256-dQZPRSzHhI3X+Pf7miwJlECGFgUfp68PtvwXAmpq5/s=";
17   };
19   dependencies = [
20     loguru
21     rpyc
22   ];
24   pythonImportsCheck = [ "streamcontroller_plugin_tools" ];
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   };