Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv 2, buildPythonPackage 3, fetchgit 4, pygobject3 5, dbus-python 6}: 7 8buildPythonPackage rec { 9 pname = "Snapper-GUI"; 10 version = "0.1"; 11 12 src = fetchgit { 13 url = "https://github.com/ricardomv/snapper-gui"; 14 rev = "11d98586b122180c75a86fccda45c4d7e3137591"; 15 sha256 = "7a9f86fc17dbf130526e70c3e925eac30e2c74d6b932efbf7e7cd9fbba6dc4b1"; 16 }; 17 18 # no tests available 19 doCheck = false; 20 21 propagatedBuildInputs = [ pygobject3 dbus-python ]; 22 23 meta = with stdenv.lib; { 24 homepage = https://github.com/ricardomv/snapper-gui; 25 description = "Graphical frontend for snapper"; 26 license = licenses.gpl2; 27 maintainers = with maintainers; [ tstrobel ]; 28 }; 29 30}