Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 fetchFromGitHub, 4 python3Packages, 5}: 6 7python3Packages.buildPythonApplication { 8 pname = "antfs-cli"; 9 version = "0-unstable-2017-02-11"; 10 format = "pyproject"; 11 12 meta = with lib; { 13 homepage = "https://github.com/Tigge/antfs-cli"; 14 description = "Extracts FIT files from ANT-FS based sport watches"; 15 mainProgram = "antfs-cli"; 16 license = licenses.mit; 17 platforms = platforms.linux; 18 }; 19 20 src = fetchFromGitHub { 21 owner = "Tigge"; 22 repo = "antfs-cli"; 23 rev = "85a6cc6fe6fc0ec38399f5aa30fb39177c565b52"; 24 sha256 = "0v8y64kldfbs809j1g9d75dd1vxq7mfxnp4b45pz8anpxhjf64fy"; 25 }; 26 27 build-system = [ python3Packages.setuptools ]; 28 29 dependencies = [ python3Packages.openant ]; 30}