1{ lib, fetchFromGitHub, python3Packages }:
2
3python3Packages.buildPythonApplication {
4 pname = "antfs-cli";
5 version = "unstable-2017-02-11";
6
7 meta = with lib; {
8 homepage = "https://github.com/Tigge/antfs-cli";
9 description = "Extracts FIT files from ANT-FS based sport watches";
10 license = licenses.mit;
11 platforms = platforms.linux;
12 };
13
14 src = fetchFromGitHub {
15 owner = "Tigge";
16 repo = "antfs-cli";
17 rev = "85a6cc6fe6fc0ec38399f5aa30fb39177c565b52";
18 sha256 = "0v8y64kldfbs809j1g9d75dd1vxq7mfxnp4b45pz8anpxhjf64fy";
19 };
20
21 propagatedBuildInputs = [ python3Packages.openant ];
22}