lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python312Packages.tcxparser: 2.3.0 -> 2.4.0

authored by

R. Ryantm and committed by
Weijia Wang
5b0e2dae 9f61f65d

+11 -6
+11 -6
pkgs/development/python-modules/tcxparser/default.nix
··· 2 2 lib, 3 3 buildPythonPackage, 4 4 fetchFromGitHub, 5 + setuptools, 5 6 lxml, 6 7 pytestCheckHook, 7 8 python-dateutil, ··· 10 11 11 12 buildPythonPackage rec { 12 13 pname = "tcxparser"; 13 - version = "2.3.0"; 14 - format = "setuptools"; 14 + version = "2.4.0"; 15 + pyproject = true; 15 16 16 - disabled = pythonOlder "3.7"; 17 + disabled = pythonOlder "3.9"; 17 18 18 19 src = fetchFromGitHub { 19 20 owner = "vkurup"; 20 21 repo = "python-tcxparser"; 21 - rev = version; 22 - hash = "sha256-HOACQpPVg/UKopz3Jdsyg0CIBnXYuVyhWUVPA+OXI0k="; 22 + tag = version; 23 + hash = "sha256-YZgzvwRy47MOTClAeJhzD6kZhGgCeVSGko6LgR/Uy0o="; 23 24 }; 24 25 25 - propagatedBuildInputs = [ 26 + build-system = [ 27 + setuptools 28 + ]; 29 + 30 + dependencies = [ 26 31 lxml 27 32 python-dateutil 28 33 ];