Files
nixpkgs/pkgs/development/python-modules/fitfile/default.nix
T
Ethan Carter Edwards 8dad9dd979 python3Packages.fitfile: init at 1.0.1
Signed-off-by: Ethan Carter Edwards <ethan@ethancedwards.com>
2025-02-21 13:51:06 -05:00

36 lines
664 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "fitfile";
version = "1.0.1";
pyproject = true;
src = fetchFromGitHub {
owner = "tcgoetz";
repo = "fit";
tag = version;
hash = "sha256-NIshX/IkPmqviYRPT4wRF7evZwn9e7BdCI5x+2Pz7II=";
};
build-system = [
setuptools
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "fitfile" ];
meta = {
description = "Python Fit file parser";
license = lib.licenses.gpl2Only;
homepage = "https://github.com/tcgoetz/fit";
maintainers = with lib.maintainers; [ ethancedwards8 ];
};
}