0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 06:00:33 +03:00

python3Packages.fitfile: init at 1.0.1

Signed-off-by: Ethan Carter Edwards <ethan@ethancedwards.com>
This commit is contained in:
Ethan Carter Edwards 2025-02-19 23:02:19 -05:00
parent 4b8fe45541
commit 8dad9dd979
No known key found for this signature in database
GPG key ID: D83DC5377393C7E6
2 changed files with 37 additions and 0 deletions

View file

@ -0,0 +1,35 @@
{
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 ];
};
}

View file

@ -4682,6 +4682,8 @@ self: super: with self; {
fitbit = callPackage ../development/python-modules/fitbit { }; fitbit = callPackage ../development/python-modules/fitbit { };
fitfile = callPackage ../development/python-modules/fitfile { };
fivem-api = callPackage ../development/python-modules/fivem-api { }; fivem-api = callPackage ../development/python-modules/fivem-api { };
fixerio = callPackage ../development/python-modules/fixerio { }; fixerio = callPackage ../development/python-modules/fixerio { };