Revert "pythonpackages.redNotebook: Remove outdated package"

This reverts commit 33a56ef0a6.
This commit is contained in:
Orivej Desh 2017-11-06 20:56:48 +00:00
parent e734ecb1e8
commit e4a535afb9
1 changed files with 23 additions and 0 deletions

View File

@ -22735,6 +22735,29 @@ EOF
};
};
redNotebook = buildPythonPackage rec {
name = "rednotebook-1.8.1";
src = pkgs.fetchurl {
url = "mirror://sourceforge/rednotebook/${name}.tar.gz";
sha256 = "00b7s4xpqpxsbzjvjx9qsx5d84m9pvn383c5di1nsfh35pig0rzn";
};
# no tests available
doCheck = false;
propagatedBuildInputs = with self; [ pygtk pywebkitgtk pyyaml chardet ];
meta = {
homepage = http://rednotebook.sourceforge.net/index.html;
description = "A modern journal that includes a calendar navigation, customizable templates, export functionality and word clouds";
license = licenses.gpl2;
maintainers = with maintainers; [ tstrobel ];
};
};
uncertainties = callPackage ../development/python-modules/uncertainties { };
funcy = buildPythonPackage rec {