nixpkgs/pkgs/applications/networking/instant-messengers/deltachat-cursed/default.nix
Martin Weinelt 8056f9250c
treewide: remove redundant SETUPTOOLS_SCM_PRETEND_VERSION usage
The setuptools-scm packages gained a setup hook, that sets it to the
derivation version automatically, so setting it to that manually has
become redundant.

This also affects downstream consumers of setuptools-scm, like hatch-vcs
or flit-scm.
2023-12-20 20:16:39 +01:00

54 lines
1.1 KiB
Nix

{ lib
, python3
, fetchFromGitHub
, testers
, deltachat-cursed
}:
python3.pkgs.buildPythonApplication rec {
pname = "deltachat-cursed";
version = "0.8.0";
pyproject = true;
src = fetchFromGitHub {
owner = "adbenitez";
repo = "deltachat-cursed";
rev = "v${version}";
hash = "sha256-1QNhNPa6ZKn0lGQXs/cmfdSFHscwlYwFC/2DpnMoHvY=";
};
nativeBuildInputs = with python3.pythonOnBuildForHost.pkgs; [
setuptools
setuptools-scm
];
propagatedBuildInputs = with python3.pkgs; [
appdirs
deltachat
emoji
notify-py
setuptools # for pkg_resources
urwid-readline
];
doCheck = false; # no tests implemented
passthru.tests = {
version = testers.testVersion rec {
package = deltachat-cursed;
command = ''
HOME="$TEMP" ${lib.getExe package} --version
'';
};
};
meta = with lib; {
description = "Lightweight Delta Chat client";
homepage = "https://github.com/adbenitez/deltachat-cursed";
license = licenses.gpl3Plus;
mainProgram = "curseddelta";
maintainers = with maintainers; [ dotlambda ];
};
}