python310Packages.tcxreader: init at 0.4.1

This commit is contained in:
firefly-cpp 2022-09-06 14:52:35 +02:00
parent aa192bd897
commit e9ae1818e3
2 changed files with 39 additions and 0 deletions

View file

@ -0,0 +1,37 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "tcxreader";
version = "0.4.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "alenrajsp";
repo = "tcxreader";
rev = "v${version}";
hash = "sha256-gPoYxdYCHVzSjCxhodRsbd60dGbPQtQQihdT0h3uVpU=";
};
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"tcxreader"
];
meta = with lib; {
description = "A reader for Garmins TCX file format.";
homepage = "https://github.com/alenrajsp/tcxreader";
license = licenses.mit;
maintainers = with maintainers; [ firefly-cpp ];
};
}

View file

@ -10674,6 +10674,8 @@ in {
tbm-utils = callPackage ../development/python-modules/tbm-utils { };
tcxreader = callPackage ../development/python-modules/tcxreader { };
teamcity-messages = callPackage ../development/python-modules/teamcity-messages { };
telegram = callPackage ../development/python-modules/telegram { };