deltachat-cursed: remove superfluous dependencies

main
Robert Schütz 2 years ago committed by Robert Schütz
parent b91c1d9d52
commit 2e333f7d83
  1. 16
      pkgs/applications/networking/instant-messengers/deltachat-cursed/default.nix

@ -1,9 +1,6 @@
{ lib { lib
, python3 , python3
, fetchFromGitHub , fetchFromGitHub
, wrapGAppsHook
, gobject-introspection
, libnotify
}: }:
python3.pkgs.buildPythonApplication rec { python3.pkgs.buildPythonApplication rec {
@ -19,29 +16,16 @@ python3.pkgs.buildPythonApplication rec {
nativeBuildInputs = [ nativeBuildInputs = [
python3.pkgs.setuptools-scm python3.pkgs.setuptools-scm
wrapGAppsHook
]; ];
SETUPTOOLS_SCM_PRETEND_VERSION = version; SETUPTOOLS_SCM_PRETEND_VERSION = version;
buildInputs = [
gobject-introspection
libnotify
];
propagatedBuildInputs = with python3.pkgs; [ propagatedBuildInputs = with python3.pkgs; [
deltachat deltachat
notify-py notify-py
pygobject3
urwid-readline urwid-readline
]; ];
dontWrapGApps = true;
preFixup = ''
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
'';
doCheck = false; # no tests implemented doCheck = false; # no tests implemented
meta = with lib; { meta = with lib; {

Loading…
Cancel
Save