about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/version-management/sourcehut/core.nix
blob: b413aa2c001d1564971dc439fe59e53734860070 (plain) (blame)
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{ lib
, fetchFromSourcehut
, buildPythonPackage
, flask
, humanize
, sqlalchemy
, sqlalchemy-utils
, psycopg2
, markdown
, mistletoe
, bleach
, requests
, beautifulsoup4
, pygments
, cryptography
, prometheus-client
, alembic
, redis
, celery
, html5lib
, importlib-metadata
, tinycss2
, sassc
, minify
}:

buildPythonPackage rec {
  pname = "srht";
  version = "0.69.15";

  src = fetchFromSourcehut {
    owner = "~sircmpwn";
    repo = "core.sr.ht";
    rev = version;
    sha256 = "sha256-T9yewweqnWL3IW5PHGyAcsIWCGn1ayK2rwrHVukYpgE=";
    fetchSubmodules = true;
  };

  patches = [
    # Fix Unix socket support in RedisQueueCollector
    patches/redis-socket/core/0001-Fix-Unix-socket-support-in-RedisQueueCollector.patch
  ];

  propagatedNativeBuildInputs = [
    sassc
    minify
  ];

  propagatedBuildInputs = [
    flask
    humanize
    sqlalchemy
    sqlalchemy-utils
    psycopg2
    markdown
    mistletoe
    bleach
    requests
    beautifulsoup4
    pygments
    cryptography
    prometheus-client
    alembic
    redis
    celery
    # Used transitively through beautifulsoup4
    html5lib
    # Used transitively trough bleach.css_sanitizer
    tinycss2
    # Used by srht.debug
    importlib-metadata
  ];

  PKGVER = version;

  dontUseSetuptoolsCheck = true;
  pythonImportsCheck = [ "srht" ];

  meta = with lib; {
    homepage = "https://git.sr.ht/~sircmpwn/srht";
    description = "Core modules for sr.ht";
    license = licenses.bsd3;
    maintainers = with maintainers; [ eadwu ];
  };
}