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

23 lines
525 B
Nix
Raw Normal View History

{ lib, fetchurl, python2Packages }:
2016-11-09 15:40:46 +00:00
python2Packages.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";
};
2016-11-09 15:40:46 +00:00
propagatedBuildInputs = with python2Packages; [ pyGtkGlade ];
# Testing fails.
doCheck = false;
meta = {
description = "Note taking application";
homepage = "http://keepnote.org";
2021-01-15 05:42:41 +00:00
license = lib.licenses.gpl2Plus;
};
}