ripasso-cursive: cosmetic changes (#361736)
[NixPkgs.git] / pkgs / by-name / ma / mastodon-archive / package.nix
blob92498c529ca1972ac202e4e4fb702700021817f7
1 { lib
2 , fetchFromGitHub
3 , python3
4 }:
6 python3.pkgs.buildPythonApplication rec {
7   pname = "mastodon-archive";
8   version = "1.4.2";
10   src = fetchFromGitHub {
11     owner = "kensanata";
12     repo = "mastodon-backup";
13     rev = "v${version}";
14     hash = "sha256-b4bYQshz7mwxEfpRYV7ze4C8hz58R9cVp58wHvGFb0A=";
15   };
17   propagatedBuildInputs = with python3.pkgs; [
18     html2text
19     mastodon-py
20     progress
21   ];
23   # There is no test
24   doCheck = false;
26   meta = with lib; {
27     description = "Utility for backing up your Mastodon content";
28     mainProgram = "mastodon-archive";
29     homepage = "https://alexschroeder.ch/software/Mastodon_Archive";
30     license = licenses.gpl3Plus;
31     maintainers = with maintainers; [ julm ];
32   };