depot/third_party/nixpkgs/pkgs/development/python-modules/tcxreader/default.nix

38 lines
847 B
Nix
Raw Normal View History

{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "tcxreader";
version = "0.4.10";
pyproject = true;
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "alenrajsp";
repo = "tcxreader";
rev = "refs/tags/v${version}";
hash = "sha256-qTAqRzrHFj0nEujlkBohLaprIvvkSYhcDoRfqWIJMjo=";
};
nativeBuildInputs = [ poetry-core ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "tcxreader" ];
meta = with lib; {
description = "Reader for Garmins TCX file format";
homepage = "https://github.com/alenrajsp/tcxreader";
changelog = "https://github.com/alenrajsp/tcxreader/blob/v${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ firefly-cpp ];
};
}