summary refs log tree commit diff
path: root/pkgs/development/python-modules/snappergui/default.nix
blob: ff274c1ba8b3f2fe5a28cf4d458e593bac6bd133 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ stdenv
, buildPythonPackage
, fetchgit
, pygobject3
, dbus-python
}:

buildPythonPackage {
  pname = "Snapper-GUI";
  version = "0.1";

  src = fetchgit {
    url = "https://github.com/ricardomv/snapper-gui";
    rev = "11d98586b122180c75a86fccda45c4d7e3137591";
    sha256 = "7a9f86fc17dbf130526e70c3e925eac30e2c74d6b932efbf7e7cd9fbba6dc4b1";
  };

  # no tests available
  doCheck = false;

  propagatedBuildInputs = [ pygobject3 dbus-python ];

  meta = with stdenv.lib; {
    homepage = "https://github.com/ricardomv/snapper-gui";
    description = "Graphical frontend for snapper";
    license = licenses.gpl2;
    maintainers = with maintainers; [ tstrobel ];
  };

}