summary refs log tree commit diff
path: root/pkgs/applications/office/keepnote/default.nix
blob: 419d761b09598f404e99d176241e17c49353590a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchurl, buildPythonPackage, pythonPackages, pygtk }:

buildPythonPackage {
  name = "keepnote-0.7.8";
  namePrefix = "";

  src = fetchurl {
    url = "http://keepnote.org/download/keepnote-0.7.8.tar.gz";
    sha256 = "0nhkkv1n0lqf3zn17pxg5cgryv1wwlj4hfmhixwd76rcy8gs45dh";
  };

  propagatedBuildInputs = [ pythonPackages.sqlite3 pygtk ];

  # Testing fails.
  doCheck = false;

  meta = {
    description = "Note taking application";
    homepage = http://rasm.ods.org/keepnote;
    license = "GPLv2+";
  };
}