lol
at v192 22 lines 544 B view raw
1{ stdenv, fetchurl, buildPythonPackage, pythonPackages, pygtk }: 2 3buildPythonPackage { 4 name = "keepnote-0.7.8"; 5 namePrefix = ""; 6 7 src = fetchurl { 8 url = "http://keepnote.org/download/keepnote-0.7.8.tar.gz"; 9 sha256 = "0nhkkv1n0lqf3zn17pxg5cgryv1wwlj4hfmhixwd76rcy8gs45dh"; 10 }; 11 12 propagatedBuildInputs = [ pythonPackages.sqlite3 pygtk ]; 13 14 # Testing fails. 15 doCheck = false; 16 17 meta = { 18 description = "Note taking application"; 19 homepage = http://rasm.ods.org/keepnote; 20 license = stdenv.lib.licenses.gpl2Plus; 21 }; 22}