rednotebook: move to applications/editors

+23 -22
+22
pkgs/applications/editors/rednotebook/default.nix
···
··· 1 + { lib, buildPythonPackage, fetchurl, pygtk, pywebkitgtk, pyyaml, chardet }: 2 + 3 + buildPythonPackage rec { 4 + name = "rednotebook-1.8.1"; 5 + 6 + src = fetchurl { 7 + url = "mirror://sourceforge/rednotebook/${name}.tar.gz"; 8 + sha256 = "00b7s4xpqpxsbzjvjx9qsx5d84m9pvn383c5di1nsfh35pig0rzn"; 9 + }; 10 + 11 + # no tests available 12 + doCheck = false; 13 + 14 + propagatedBuildInputs = [ pygtk pywebkitgtk pyyaml chardet ]; 15 + 16 + meta = with lib; { 17 + homepage = http://rednotebook.sourceforge.net/index.html; 18 + description = "A modern journal that includes a calendar navigation, customizable templates, export functionality and word clouds"; 19 + license = licenses.gpl2; 20 + maintainers = with maintainers; [ tstrobel ]; 21 + }; 22 + }
+1 -22
pkgs/top-level/python-packages.nix
··· 22735 }; 22736 }; 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 22761 uncertainties = callPackage ../development/python-modules/uncertainties { }; 22762
··· 22735 }; 22736 }; 22737 22738 + redNotebook = callPackage ../applications/editors/rednotebook { }; 22739 22740 uncertainties = callPackage ../development/python-modules/uncertainties { }; 22741