mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-13 05:05:29 +03:00
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.
This commit is contained in:
parent
227aec9ac1
commit
d889b1b298
4 changed files with 10 additions and 11 deletions
|
@ -1,19 +1,16 @@
|
||||||
{ lib
|
{ lib
|
||||||
, buildPythonApplication
|
|
||||||
, isPy3k
|
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, notmuch
|
|
||||||
, pygobject3
|
|
||||||
, gobject-introspection
|
, gobject-introspection
|
||||||
, libnotify
|
, libnotify
|
||||||
, wrapGAppsHook
|
, wrapGAppsHook
|
||||||
, gtk3
|
, gtk3
|
||||||
|
, python3
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonApplication rec {
|
python3.pkgs.buildPythonApplication rec {
|
||||||
pname = "notifymuch";
|
pname = "notifymuch";
|
||||||
version = "0.1";
|
version = "0.1";
|
||||||
disabled = !isPy3k;
|
format = "setuptools";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "kspi";
|
owner = "kspi";
|
||||||
|
@ -24,11 +21,12 @@ buildPythonApplication rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
notmuch
|
|
||||||
pygobject3
|
|
||||||
libnotify
|
libnotify
|
||||||
gtk3
|
gtk3
|
||||||
];
|
] ++ (with python3.pkgs; [
|
||||||
|
notmuch
|
||||||
|
pygobject3
|
||||||
|
]);
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
gobject-introspection
|
gobject-introspection
|
|
@ -4512,6 +4512,8 @@ with pkgs;
|
||||||
|
|
||||||
notify = callPackage ../tools/misc/notify { };
|
notify = callPackage ../tools/misc/notify { };
|
||||||
|
|
||||||
|
notifymuch = callPackage ../applications/misc/notifymuch { };
|
||||||
|
|
||||||
npins = callPackage ../tools/nix/npins { };
|
npins = callPackage ../tools/nix/npins { };
|
||||||
|
|
||||||
nrsc5 = callPackage ../applications/misc/nrsc5 { };
|
nrsc5 = callPackage ../applications/misc/nrsc5 { };
|
||||||
|
|
|
@ -104,6 +104,7 @@ mapAliases ({
|
||||||
mutmut = throw "mutmut has been promoted to a top-level attribute"; # added 2022-10-02
|
mutmut = throw "mutmut has been promoted to a top-level attribute"; # added 2022-10-02
|
||||||
net2grid = gridnet; # add 2022-04-22
|
net2grid = gridnet; # add 2022-04-22
|
||||||
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
|
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
|
||||||
|
notifymuch = throw "notifymuch has been promoted to a top-level attribute"; # added 2022-10-02
|
||||||
ordereddict = throw "ordereddict has been removed because it is only useful on unsupported python versions."; # added 2022-05-28
|
ordereddict = throw "ordereddict has been removed because it is only useful on unsupported python versions."; # added 2022-05-28
|
||||||
pam = python-pam; # added 2020-09-07.
|
pam = python-pam; # added 2020-09-07.
|
||||||
PasteDeploy = pastedeploy; # added 2021-10-07
|
PasteDeploy = pastedeploy; # added 2021-10-07
|
||||||
|
|
|
@ -6250,8 +6250,6 @@ in {
|
||||||
|
|
||||||
notify2 = callPackage ../development/python-modules/notify2 { };
|
notify2 = callPackage ../development/python-modules/notify2 { };
|
||||||
|
|
||||||
notifymuch = callPackage ../development/python-modules/notifymuch {};
|
|
||||||
|
|
||||||
notmuch = callPackage ../development/python-modules/notmuch {
|
notmuch = callPackage ../development/python-modules/notmuch {
|
||||||
inherit (pkgs) notmuch;
|
inherit (pkgs) notmuch;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue