summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/pleroma-bot/default.nix
blob: 282b22df76934ee8be0454ebdacf7ed49799f922 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  pytestCheckHook,
  requests-mock,
  oauthlib,
  requests-oauthlib,
  requests,
  pyaml,
}:

buildPythonPackage rec {
  pname = "pleroma-bot";
  version = "0.8.6";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "robertoszek";
    repo = "pleroma-bot";
    rev = version;
    hash = "sha256-vJxblpf3NMSyYMHeWG7vHP5AeluTtMtVxOsHgvGDHeA=";
  };

  propagatedBuildInputs = [
    pyaml
    requests
    requests-oauthlib
    oauthlib
  ];

  nativeCheckInputs = [
    pytestCheckHook
    requests-mock
  ];

  pythonImportsCheck = [ "pleroma_bot" ];

  meta = {
    description = "Bot for mirroring one or multiple Twitter accounts in Pleroma/Mastodon";
    mainProgram = "pleroma-bot";
    homepage = "https://robertoszek.github.io/pleroma-bot/";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ robertoszek ];
  };
}