Merge pull request #229179 from mweinelt/synadmin-0.41.2

matrix-synapse.tools.synadm: 0.40 -> 0.41.2
This commit is contained in:
Martin Weinelt
2023-05-02 14:45:40 +02:00
committed by GitHub
+6 -2
View File
@@ -1,15 +1,16 @@
{ lib
, nix-update-script
, python3
}:
python3.pkgs.buildPythonApplication rec {
pname = "synadm";
version = "0.40";
version = "0.41.2";
format = "setuptools";
src = python3.pkgs.fetchPypi {
inherit pname version;
hash = "sha256-iDG2wsC0820unKlKNDKwgCNC+SAWJm8ltSB4knmLqeQ=";
hash = "sha256-wSpgc1umBMLCc2ThfYSuNNnzqWXyEQM0XhTuOAQaiXg=";
};
propagatedBuildInputs = with python3.pkgs; [
@@ -28,6 +29,8 @@ python3.pkgs.buildPythonApplication rec {
runHook postCheck
'';
passthru.updateScript = nix-update-script { };
meta = with lib; {
description = "Command line admin tool for Synapse";
longDescription = ''
@@ -35,6 +38,7 @@ python3.pkgs.buildPythonApplication rec {
conveniently issue commands available via its admin API's
(matrix-org/synapse@master/docs/admin_api)
'';
changelog = "https://github.com/JOJ0/synadm/releases/tag/v${version}";
homepage = "https://github.com/JOJ0/synadm";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ hexa ];