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:
parent
4b8fe45541
commit
8dad9dd979
2 changed files with 37 additions and 0 deletions
35
pkgs/development/python-modules/fitfile/default.nix
Normal file
35
pkgs/development/python-modules/fitfile/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -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 { };
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue