8 python3.pkgs.buildPythonApplication rec {
9 pname = "deltachat-cursed";
14 src = fetchFromGitHub {
16 repo = "deltachat-cursed";
18 hash = "sha256-z4JKe5soR4FdIn8hugxtnxQr/9V8m8a7QRzE1liIexc=";
21 build-system = with python3.pythonOnBuildForHost.pkgs; [
26 dependencies = with python3.pkgs; [
31 setuptools # for pkg_resources
35 doCheck = false; # no tests implemented
38 version = testers.testVersion rec {
39 package = deltachat-cursed;
41 HOME="$TEMP" ${lib.getExe package} --version
47 description = "Lightweight Delta Chat client";
48 homepage = "https://github.com/adbenitez/deltachat-cursed";
49 license = licenses.gpl3Plus;
50 mainProgram = "curseddelta";
51 maintainers = with maintainers; [ dotlambda ];