blob: f9b3d6c860702e0de73f467930ab254402dc658b (
about) (
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
{
fetchFromGitHub,
lib,
stdenv,
postgresql,
postgresqlTestHook,
python3Packages,
}:
python3Packages.buildPythonApplication rec {
pname = "fittrackee";
version = "0.9.4";
pyproject = true;
src = fetchFromGitHub {
owner = "SamR1";
repo = "FitTrackee";
tag = "v${version}";
hash = "sha256-01lkPboF4KaCPnZHYVXUdIhXpJYGwcRPubnbjMm3mLY=";
};
build-system = [
python3Packages.poetry-core
];
pythonRelaxDeps = [
"authlib"
"flask-limiter"
"flask-migrate"
"nh3"
"pyopenssl"
"pytz"
"sqlalchemy"
];
dependencies =
with python3Packages;
[
authlib
babel
click
dramatiq
flask
flask-bcrypt
flask-dramatiq
flask-limiter
flask-migrate
flask-sqlalchemy
gpxpy
gunicorn
humanize
jsonschema
nh3
psycopg2-binary
pyjwt
pyopenssl
pytz
shortuuid
sqlalchemy
staticmap
ua-parser
]
++ dramatiq.optional-dependencies.redis
++ flask-limiter.optional-dependencies.redis;
pythonImportsCheck = [ "fittrackee" ];
nativeCheckInputs = with python3Packages; [
pytestCheckHook
freezegun
postgresqlTestHook
postgresql
time-machine
];
pytestFlagsArray = [
"fittrackee"
];
postgresqlTestSetupPost = ''
export DATABASE_TEST_URL=postgresql://$PGUSER/$PGDATABASE?host=$PGHOST
'';
doCheck = !stdenv.hostPlatform.isDarwin; # tests are a bit flaky on darwin
preCheck = ''
export TMP=$TMPDIR
export UI_URL=http://0.0.0.0:5000
'';
meta = {
description = "Self-hosted outdoor activity tracker";
homepage = "https://github.com/SamR1/FitTrackee";
changelog = "https://github.com/SamR1/FitTrackee/blob/${src.tag}/CHANGELOG.md";
license = lib.licenses.agpl3Only;
maintainers = with lib.maintainers; [ traxys ];
};
}
|