notifymuch: Migrate out of python package set

It's an application with no visible library surface, so it has no place
in the python package set.

+10 -11
+7 -9
pkgs/development/python-modules/notifymuch/default.nix pkgs/applications/misc/notifymuch/default.nix
··· 1 1 { lib 2 - , buildPythonApplication 3 - , isPy3k 4 2 , fetchFromGitHub 5 - , notmuch 6 - , pygobject3 7 3 , gobject-introspection 8 4 , libnotify 9 5 , wrapGAppsHook 10 6 , gtk3 7 + , python3 11 8 }: 12 9 13 - buildPythonApplication rec { 10 + python3.pkgs.buildPythonApplication rec { 14 11 pname = "notifymuch"; 15 12 version = "0.1"; 16 - disabled = !isPy3k; 13 + format = "setuptools"; 17 14 18 15 src = fetchFromGitHub { 19 16 owner = "kspi"; ··· 24 21 }; 25 22 26 23 propagatedBuildInputs = [ 24 + libnotify 25 + gtk3 26 + ] ++ (with python3.pkgs; [ 27 27 notmuch 28 28 pygobject3 29 - libnotify 30 - gtk3 31 - ]; 29 + ]); 32 30 33 31 nativeBuildInputs = [ 34 32 gobject-introspection
+2
pkgs/top-level/all-packages.nix
··· 4512 4512 4513 4513 notify = callPackage ../tools/misc/notify { }; 4514 4514 4515 + notifymuch = callPackage ../applications/misc/notifymuch { }; 4516 + 4515 4517 npins = callPackage ../tools/nix/npins { }; 4516 4518 4517 4519 nrsc5 = callPackage ../applications/misc/nrsc5 { };
+1
pkgs/top-level/python-aliases.nix
··· 104 104 mutmut = throw "mutmut has been promoted to a top-level attribute"; # added 2022-10-02 105 105 net2grid = gridnet; # add 2022-04-22 106 106 nose-cover3 = throw "nose-cover3 has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-02-16 107 + notifymuch = throw "notifymuch has been promoted to a top-level attribute"; # added 2022-10-02 107 108 ordereddict = throw "ordereddict has been removed because it is only useful on unsupported python versions."; # added 2022-05-28 108 109 pam = python-pam; # added 2020-09-07. 109 110 PasteDeploy = pastedeploy; # added 2021-10-07
-2
pkgs/top-level/python-packages.nix
··· 6250 6250 6251 6251 notify2 = callPackage ../development/python-modules/notify2 { }; 6252 6252 6253 - notifymuch = callPackage ../development/python-modules/notifymuch {}; 6254 - 6255 6253 notmuch = callPackage ../development/python-modules/notmuch { 6256 6254 inherit (pkgs) notmuch; 6257 6255 };