0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 13:40:28 +03:00
Chris Moultrie 2025-06-01 23:04:08 -04:00
parent 88360220fb
commit a52feb8cf0
No known key found for this signature in database

View file

@ -8,14 +8,14 @@
}:
python3Packages.buildPythonApplication rec {
pname = "fittrackee";
version = "0.9.10";
version = "0.10.2";
pyproject = true;
src = fetchFromGitHub {
owner = "SamR1";
repo = "FitTrackee";
tag = "v${version}";
hash = "sha256-004M7Uhsl0K8BX19eVU4NrvBeAyUJx/mBlC/R27y9jg=";
hash = "sha256-ZCQ4Ft2TSjS62DmGDpQ7gG5Spnf82v82i5nnZtg1UmA=";
};
build-system = [
@ -24,9 +24,11 @@ python3Packages.buildPythonApplication rec {
pythonRelaxDeps = [
"authlib"
"flask"
"flask-limiter"
"flask-migrate"
"nh3"
"lxml"
"pyopenssl"
"pytz"
"sqlalchemy"
@ -39,6 +41,8 @@ python3Packages.buildPythonApplication rec {
babel
click
dramatiq
dramatiq-abort
fitdecode
flask
flask-bcrypt
flask-dramatiq
@ -56,8 +60,9 @@ python3Packages.buildPythonApplication rec {
pytz
shortuuid
sqlalchemy
staticmap
staticmap3
ua-parser
xmltodict
]
++ dramatiq.optional-dependencies.redis
++ flask-limiter.optional-dependencies.redis;