Revert "pythonpackages.redNotebook: Remove outdated package"

This reverts commit 33a56ef0a68cc06298556d866b24f1f2a8286639.

+23
+23
pkgs/top-level/python-packages.nix
··· 22735 22735 }; 22736 22736 }; 22737 22737 22738 + 22739 + redNotebook = buildPythonPackage rec { 22740 + name = "rednotebook-1.8.1"; 22741 + 22742 + src = pkgs.fetchurl { 22743 + url = "mirror://sourceforge/rednotebook/${name}.tar.gz"; 22744 + sha256 = "00b7s4xpqpxsbzjvjx9qsx5d84m9pvn383c5di1nsfh35pig0rzn"; 22745 + }; 22746 + 22747 + # no tests available 22748 + doCheck = false; 22749 + 22750 + propagatedBuildInputs = with self; [ pygtk pywebkitgtk pyyaml chardet ]; 22751 + 22752 + meta = { 22753 + homepage = http://rednotebook.sourceforge.net/index.html; 22754 + description = "A modern journal that includes a calendar navigation, customizable templates, export functionality and word clouds"; 22755 + license = licenses.gpl2; 22756 + maintainers = with maintainers; [ tstrobel ]; 22757 + }; 22758 + }; 22759 + 22760 + 22738 22761 uncertainties = callPackage ../development/python-modules/uncertainties { }; 22739 22762 22740 22763 funcy = buildPythonPackage rec {