mastodon-archive: init at 1.3.1

This commit is contained in:
Julien Moutinho 2021-03-13 12:03:22 +01:00
parent fd374934ef
commit 0af0d5c5c3
2 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,32 @@
{ lib
, fetchFromGitHub
, python3
}:
python3.pkgs.buildPythonApplication rec {
pname = "mastodon-archive";
version = "1.3.1";
src = fetchFromGitHub {
owner = "kensanata";
repo = "mastodon-backup";
rev = "v${version}";
sha256 = "1dlrkygywxwm6xbn0pnfwd3f7641wnvxdyb5qihbsf62w1w08x8r";
};
propagatedBuildInputs = with python3.pkgs; [
html2text
mastodon-py
progress
];
# There is no test
doCheck = false;
meta = with lib; {
description = "Utility for backing up your Mastodon content";
homepage = "https://alexschroeder.ch/software/Mastodon_Archive";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ julm ];
};
}

View file

@ -13669,6 +13669,8 @@ in
massif-visualizer = libsForQt5.callPackage ../development/tools/analysis/massif-visualizer { };
mastodon-archive = callPackage ../tools/backup/mastodon-archive { };
maven = maven3;
maven3 = callPackage ../development/tools/build-managers/apache-maven { };