mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 16:43:58 +00:00
116 lines
2.2 KiB
Nix
116 lines
2.2 KiB
Nix
{
|
|
fetchFromGitHub,
|
|
fetchPypi,
|
|
lib,
|
|
stdenv,
|
|
postgresql,
|
|
postgresqlTestHook,
|
|
python3,
|
|
}:
|
|
let
|
|
python = python3.override {
|
|
self = python;
|
|
packageOverrides = self: super: {
|
|
sqlalchemy = super.sqlalchemy_1_4;
|
|
|
|
flask-sqlalchemy = super.flask-sqlalchemy.overridePythonAttrs (oldAttrs: rec {
|
|
version = "3.0.5";
|
|
|
|
src = fetchPypi {
|
|
pname = "flask_sqlalchemy";
|
|
inherit version;
|
|
hash = "sha256-xXZeWMoUVAG1IQbA9GF4VpJDxdolVWviwjHsxghnxbE=";
|
|
};
|
|
});
|
|
};
|
|
};
|
|
|
|
in
|
|
python.pkgs.buildPythonApplication rec {
|
|
pname = "fittrackee";
|
|
version = "0.8.10";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "SamR1";
|
|
repo = "FitTrackee";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-K110H5Y8vQrRx2/O+2ezhpGp4G5sJUlzE+1cSYu7+4I=";
|
|
};
|
|
|
|
build-system = [
|
|
python.pkgs.poetry-core
|
|
];
|
|
|
|
pythonRelaxDeps = [
|
|
"authlib"
|
|
"flask-limiter"
|
|
"gunicorn"
|
|
"pyjwt"
|
|
"pyopenssl"
|
|
"pytz"
|
|
"sqlalchemy"
|
|
"ua-parser"
|
|
];
|
|
|
|
dependencies =
|
|
with python.pkgs;
|
|
[
|
|
authlib
|
|
babel
|
|
click
|
|
dramatiq
|
|
flask
|
|
flask-bcrypt
|
|
flask-dramatiq
|
|
flask-limiter
|
|
flask-migrate
|
|
flask-sqlalchemy
|
|
gpxpy
|
|
gunicorn
|
|
humanize
|
|
psycopg2-binary
|
|
pyjwt
|
|
pyopenssl
|
|
pytz
|
|
shortuuid
|
|
sqlalchemy
|
|
staticmap
|
|
ua-parser
|
|
]
|
|
++ dramatiq.optional-dependencies.redis
|
|
++ flask-limiter.optional-dependencies.redis;
|
|
|
|
pythonImportsCheck = [ "fittrackee" ];
|
|
|
|
nativeCheckInputs = with python.pkgs; [
|
|
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
|
|
'';
|
|
|
|
meta = {
|
|
description = "Self-hosted outdoor activity tracker";
|
|
homepage = "https://github.com/SamR1/FitTrackee";
|
|
changelog = "https://github.com/SamR1/FitTrackee/blob/${src.rev}/CHANGELOG.md";
|
|
license = lib.licenses.agpl3Only;
|
|
maintainers = with lib.maintainers; [ traxys ];
|
|
};
|
|
}
|