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