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