biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / by-name / co / connman-notify / package.nix
blobfad8e477ada72c2c04912e6ecf482c80e9861bd2
1 { lib, fetchFromGitLab, python3Packages, glib, gobject-introspection, wrapGAppsHook3 }:
3 python3Packages.buildPythonApplication {
4   pname = "connman-notify";
5   version = "2019-10-05";
7   src = fetchFromGitLab {
8     owner = "wavexx";
9     repo = "connman-notify";
10     rev = "24b10a51721b54d932f4cd61ef2756423768c015";
11     hash = "sha256-EsF+Ckjojnn2o5PCDIexKrNIYxcIM1CZUNaTEIwvq8w=";
12   };
14   format = "other";
16   nativeBuildInputs = [ gobject-introspection wrapGAppsHook3 ];
18   buildInputs = [ glib ];
20   pythonPath = with python3Packages; [ dbus-python pygobject3 ];
22   strictDeps = false;
24   installPhase = ''
25     install -D -t $out/bin connman-notify
26     install -D -t $out/share/doc README.rst
27   '';
29   meta = with lib; {
30     description = "Desktop notification integration for connman";
31     mainProgram = "connman-notify";
32     homepage = "https://gitlab.com/wavexx/connman-notify";
33     license = licenses.gpl2;
34     platforms = platforms.linux;
35     maintainers = [ maintainers.romildo ];
36   };