10 buildPythonPackage rec {
15 disabled = pythonOlder "3.6";
17 src = fetchFromGitHub {
20 rev = "refs/tags/v${version}";
21 hash = "sha256-qTAqRzrHFj0nEujlkBohLaprIvvkSYhcDoRfqWIJMjo=";
24 nativeBuildInputs = [ poetry-core ];
26 nativeCheckInputs = [ pytestCheckHook ];
28 pythonImportsCheck = [ "tcxreader" ];
31 description = "Reader for Garmin’s TCX file format";
32 homepage = "https://github.com/alenrajsp/tcxreader";
33 changelog = "https://github.com/alenrajsp/tcxreader/blob/v${version}/CHANGELOG.md";
34 license = licenses.mit;
35 maintainers = with maintainers; [ firefly-cpp ];