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