2016-11-09 15:40:46 +00:00
|
|
|
{ stdenv, fetchurl, python2Packages }:
|
2010-11-15 19:44:53 +00:00
|
|
|
|
2016-11-09 15:40:46 +00:00
|
|
|
python2Packages.buildPythonApplication {
|
2014-05-18 12:43:21 +01:00
|
|
|
name = "keepnote-0.7.8";
|
2011-03-28 17:48:31 +01:00
|
|
|
namePrefix = "";
|
2010-11-15 19:44:53 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-05-18 12:43:21 +01:00
|
|
|
url = "http://keepnote.org/download/keepnote-0.7.8.tar.gz";
|
|
|
|
sha256 = "0nhkkv1n0lqf3zn17pxg5cgryv1wwlj4hfmhixwd76rcy8gs45dh";
|
2010-11-15 19:44:53 +00:00
|
|
|
};
|
|
|
|
|
2016-11-09 15:40:46 +00:00
|
|
|
propagatedBuildInputs = with python2Packages; [ pyGtkGlade ];
|
2010-11-15 19:44:53 +00:00
|
|
|
|
|
|
|
# Testing fails.
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Note taking application";
|
2018-09-01 23:33:29 +01:00
|
|
|
homepage = http://keepnote.org;
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2010-11-15 19:44:53 +00:00
|
|
|
};
|
|
|
|
}
|