Skip to content

Commit 72bb536

Browse files
authoredMar 21, 2025
python313Packages.garth: 0.5.2 -> 0.5.3 (#389614)
2 parents 099d168 + b9fd1e9 commit 72bb536

File tree

3 files changed

+19
-14
lines changed

3 files changed

+19
-14
lines changed
 

‎pkgs/by-name/ga/garmindb/package.nix

+13-11
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,18 @@ python3Packages.buildPythonApplication rec {
1717
hash = "sha256-JAUDAYf9CH/BxwV88ziF5Zy+3ibcbieEfHrZpHSU8m0=";
1818
};
1919

20-
build-system = [
21-
python3Packages.setuptools
20+
pythonRelaxDeps = [
21+
"sqlalchemy"
22+
"cached-property"
23+
"garth"
24+
"tqdm"
25+
"fitfile"
26+
"tcxfile"
27+
"idbutils"
2228
];
2329

30+
build-system = with python3Packages; [ setuptools ];
31+
2432
dependencies = with python3Packages; [
2533
sqlalchemy
2634
python-dateutil
@@ -33,15 +41,6 @@ python3Packages.buildPythonApplication rec {
3341
tornado
3442
];
3543

36-
pythonRelaxDeps = [
37-
"sqlalchemy"
38-
"cached-property"
39-
"tqdm"
40-
"fitfile"
41-
"tcxfile"
42-
"idbutils"
43-
];
44-
4544
# require data files
4645
disabledTestPaths = [
4746
"test/test_activities_db.py"
@@ -64,9 +63,12 @@ python3Packages.buildPythonApplication rec {
6463
writableTmpDirAsHomeHook
6564
];
6665

66+
pythonImportsCheck = [ "garmindb" ];
67+
6768
meta = {
6869
description = "Download and parse data from Garmin Connect or a Garmin watch";
6970
homepage = "https://github.com/tcgoetz/GarminDB";
71+
changelog = "https://github.com/tcgoetz/GarminDB/releases/tag/${src.tag}";
7072
license = lib.licenses.gpl2Only;
7173
platforms = lib.platforms.unix;
7274
maintainers = with lib.maintainers; [ ethancedwards8 ];

‎pkgs/development/python-modules/garminconnect/default.nix

+4-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,10 @@ buildPythonPackage rec {
2323
hash = "sha256-V+i+e1McE9YFVuq2fuQtD3RKTHw9u3u0bZ2zCi9yZCM=";
2424
};
2525

26-
pythonRelaxDeps = [ "withings-sync" ];
26+
pythonRelaxDeps = [
27+
"garth"
28+
"withings-sync"
29+
];
2730

2831
build-system = [ pdm-backend ];
2932

‎pkgs/development/python-modules/garth/default.nix

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@
1313

1414
buildPythonPackage rec {
1515
pname = "garth";
16-
version = "0.5.2";
16+
version = "0.5.3";
1717
pyproject = true;
1818

1919
disabled = pythonOlder "3.10";
2020

2121
src = fetchPypi {
2222
inherit pname version;
23-
hash = "sha256-WUrK/ieYnao/+8hGDK8GOAI1nGsfQMmP/Tsh9prcbgk=";
23+
hash = "sha256-cyqXCkfkpd71VqguZFOA4bO/dOkKBZkEzJ6BVLCBWFA=";
2424
};
2525

2626
pythonRelaxDeps = [ "requests-oauthlib" ];

0 commit comments

Comments
 (0)
Failed to load comments.