nixpkgs/pkgs/applications/office/keepnote/default.nix

23 lines
547 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pythonPackages }:
pythonPackages.buildPythonApplication {
2014-05-18 11:43:21 +00:00
name = "keepnote-0.7.8";
namePrefix = "";
src = fetchurl {
2014-05-18 11:43:21 +00:00
url = "http://keepnote.org/download/keepnote-0.7.8.tar.gz";
sha256 = "0nhkkv1n0lqf3zn17pxg5cgryv1wwlj4hfmhixwd76rcy8gs45dh";
};
propagatedBuildInputs = with pythonPackages; [ sqlite3 pyGtkGlade ];
# Testing fails.
doCheck = false;
meta = {
description = "Note taking application";
homepage = http://rasm.ods.org/keepnote;
license = stdenv.lib.licenses.gpl2Plus;
};
}