fluffychat: 1.22.1 -> 1.23.0 (#364091)
[NixPkgs.git] / pkgs / by-name / sy / systemd-wait / package.nix
blobd1a7e0c1f92f5dea9e284e7d7d7adcb1b843126f
2   python3Packages,
3   fetchFromGitHub,
4   lib,
5 }:
7 python3Packages.buildPythonApplication rec {
8   pname = "systemd-wait";
9   version = "0.1+2018-10-05";
11   src = fetchFromGitHub {
12     owner = "Stebalien";
13     repo = pname;
14     rev = "bbb58dd4584cc08ad20c3888edb7628f28aee3c7";
15     sha256 = "1l8rd0wzf3m7fk0g1c8wc0csdisdfac0filhixpgp0ck9ignayq5";
16   };
18   propagatedBuildInputs = with python3Packages; [
19     dbus-python
20     pygobject3
21   ];
23   meta = {
24     homepage = "https://github.com/Stebalien/systemd-wait";
25     license = lib.licenses.gpl3;
26     description = "Wait for a systemd unit to enter a specific state";
27     mainProgram = "systemd-wait";
28     maintainers = [ lib.maintainers.benley ];
29     platforms = lib.platforms.linux;
30   };