blob: 08d28800fd5b749294c078393d63035a2c2920dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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 ];
};
}
|