forked from mirrors/nixpkgs
39 lines
798 B
Nix
39 lines
798 B
Nix
{ lib
|
|
, python3
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "deltachat-cursed";
|
|
version = "0.7.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "adbenitez";
|
|
repo = "deltachat-cursed";
|
|
rev = "v${version}";
|
|
hash = "sha256-EA3yTP4j/jj26E8zdRwTIW+9FkI0ehK4Y8AqiCnF2xA=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
python3.pkgs.setuptools-scm
|
|
];
|
|
|
|
SETUPTOOLS_SCM_PRETEND_VERSION = version;
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
deltachat
|
|
emoji
|
|
notify-py
|
|
urwid-readline
|
|
];
|
|
|
|
doCheck = false; # no tests implemented
|
|
|
|
meta = with lib; {
|
|
description = "Lightweight Delta Chat client";
|
|
homepage = "https://github.com/adbenitez/deltachat-cursed";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ dotlambda ];
|
|
};
|
|
}
|