nixpkgs/pkgs/applications/networking/instant-messengers/matrix-commander/default.nix
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00

65 lines
1.2 KiB
Nix

{ lib
, fetchFromGitHub
, buildPythonApplication
, cacert
, setuptools
, matrix-nio
, python-magic
, markdown
, pillow
, aiofiles
, notify2
, dbus-python
, pyxdg
, python-olm
, emoji
}:
buildPythonApplication rec {
pname = "matrix-commander";
version = "7.2.0";
src = fetchFromGitHub {
owner = "8go";
repo = "matrix-commander";
rev = "v${version}";
hash = "sha256-qL6ARkAWu0FEuYK2e9Z9hMSfK4TW0kGgoIFUfJ8Dgwk=";
};
format = "pyproject";
postPatch = ''
# Dependencies already bundled with Python
sed -i \
-e '/uuid/d' \
-e '/argparse/d' \
-e '/asyncio/d' \
-e '/datetime/d' \
setup.cfg requirements.txt
'';
propagatedBuildInputs = [
cacert
setuptools
matrix-nio
python-magic
markdown
pillow
aiofiles
notify2
dbus-python
pyxdg
python-olm
emoji
] ++ matrix-nio.optional-dependencies.e2e;
meta = with lib; {
description = "Simple but convenient CLI-based Matrix client app for sending and receiving";
mainProgram = "matrix-commander";
homepage = "https://github.com/8go/matrix-commander";
license = licenses.gpl3Plus;
platforms = platforms.unix;
maintainers = [ maintainers.seb314 ];
};
}