8 python3.pkgs.buildPythonApplication rec {
9 pname = "deltachat-cursed";
14 src = fetchFromGitHub {
16 repo = "deltachat-cursed";
18 hash = "sha256-1QNhNPa6ZKn0lGQXs/cmfdSFHscwlYwFC/2DpnMoHvY=";
21 nativeBuildInputs = with python3.pythonOnBuildForHost.pkgs; [
26 propagatedBuildInputs = 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 ];