blob: 9eee0883c0f9e4224ae67369018bbc3a665bdaf6 (
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
{
src,
version,
lib,
nixosTests,
python3,
ffmpeg-full,
szurubooru,
}:
python3.pkgs.buildPythonApplication {
pname = "szurubooru-server";
inherit version;
pyproject = true;
src = "${src}/server";
nativeBuildInputs = with python3.pkgs; [ setuptools ];
propagatedBuildInputs = with python3.pkgs; [
certifi
coloredlogs
legacy-cgi
numpy
pillow
pillow-heif
psycopg2-binary
pynacl
pyrfc3339
pytz
pyyaml
sqlalchemy
yt-dlp
];
makeWrapperArgs = [
"--prefix PATH : ${lib.makeBinPath [ ffmpeg-full ]}"
];
postInstall = ''
mkdir $out/bin
install -m0755 $src/szuru-admin $out/bin/szuru-admin
'';
passthru.tests.szurubooru = nixosTests.szurubooru;
# Database migration. Needs the szurubooru server in its environment for the
# migration to complete successfully.
passthru.alembic = python3.pkgs.alembic.overrideAttrs (old: {
propagatedBuildInputs = old.propagatedBuildInputs ++ [
szurubooru.server
];
});
# Waitress is used to run the serer.
passthru.waitress = python3.pkgs.waitress.overrideAttrs (old: {
propagatedBuildInputs = old.propagatedBuildInputs ++ [
szurubooru.server
];
});
meta = {
description = "Server of szurubooru, an image board engine for small and medium communities";
homepage = "https://github.com/rr-/szurubooru";
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [ ratcornu ];
};
}
|