default.nix (586B)
1 { 2 lib, 3 fetchFromGitHub, 4 python3Packages, 5 }: 6 7 python3Packages.buildPythonPackage rec { 8 pname = "fitdecode"; 9 version = "0.10.0"; 10 11 src = fetchFromGitHub { 12 owner = "polyvertex"; 13 repo = "fitdecode"; 14 rev = "v${version}"; 15 hash = "sha256-pW1PgJGqFL2reOYYfpGnQ4WoYFKGMNY8iQJzyHYOly8="; 16 }; 17 18 nativeCheckInputs = with python3Packages; [ 19 pytestCheckHook 20 ]; 21 22 meta = { 23 description = "FIT file parser and decoder"; 24 homepage = "https://github.com/polyvertex/fitdecode"; 25 license = lib.licenses.mit; 26 maintainers = [ lib.maintainers.sikmir ]; 27 }; 28 }