summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/networking/instant-messengers/deltachat-cursed
diff options
context:
space:
mode:
authorRobert Schütz <nix@dotlambda.de>2022-05-19 01:31:08 +0000
committerRobert Schütz <github@dotlambda.de>2022-05-19 12:35:25 -0700
commit2e333f7d8313e4974d9108057544356c2e890334 (patch)
tree957b8ca95b0f660485deb98e5307d5423480cbd8 /pkgs/applications/networking/instant-messengers/deltachat-cursed
parentb91c1d9d523ed57bc785e0780251b4158985634c (diff)
deltachat-cursed: remove superfluous dependencies
Diffstat (limited to 'pkgs/applications/networking/instant-messengers/deltachat-cursed')
-rw-r--r--pkgs/applications/networking/instant-messengers/deltachat-cursed/default.nix16
1 files changed, 0 insertions, 16 deletions
diff --git a/pkgs/applications/networking/instant-messengers/deltachat-cursed/default.nix b/pkgs/applications/networking/instant-messengers/deltachat-cursed/default.nix
index 442a6adcb790..0b692104a4fa 100644
--- a/pkgs/applications/networking/instant-messengers/deltachat-cursed/default.nix
+++ b/pkgs/applications/networking/instant-messengers/deltachat-cursed/default.nix
@@ -1,9 +1,6 @@
{ lib
, python3
, fetchFromGitHub
-, wrapGAppsHook
-, gobject-introspection
-, libnotify
}:
python3.pkgs.buildPythonApplication rec {
@@ -19,29 +16,16 @@ python3.pkgs.buildPythonApplication rec {
nativeBuildInputs = [
python3.pkgs.setuptools-scm
- wrapGAppsHook
];
SETUPTOOLS_SCM_PRETEND_VERSION = version;
- buildInputs = [
- gobject-introspection
- libnotify
- ];
-
propagatedBuildInputs = with python3.pkgs; [
deltachat
notify-py
- pygobject3
urwid-readline
];
- dontWrapGApps = true;
-
- preFixup = ''
- makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
- '';
-
doCheck = false; # no tests implemented
meta = with lib; {