Files
nixpkgs/pkgs/development/python-modules/tcxparser/default.nix
Martin Weinelt 44bcee4fc5 python3Packages.tcxparser: 2.4.0 -> 2.4.0-r1
This commit was automatically generated using update-python-libraries.
2025-08-09 19:04:25 +02:00

46 lines
831 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
lxml,
pytestCheckHook,
python-dateutil,
pythonOlder,
}:
buildPythonPackage rec {
pname = "tcxparser";
version = "2.4.0-r1";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "vkurup";
repo = "python-tcxparser";
tag = version;
hash = "sha256-lQczTuxmxu4nCPJsgblrW2RXST7kvhtPnscemwXCx0Y=";
};
build-system = [
setuptools
];
dependencies = [
lxml
python-dateutil
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "tcxparser" ];
meta = with lib; {
description = "Simple parser for Garmin TCX files";
homepage = "https://github.com/vkurup/python-tcxparser";
license = licenses.bsd2;
maintainers = with maintainers; [ firefly-cpp ];
};
}