package.nix (701B)
1 { 2 lib, 3 fetchFromGitHub, 4 python3Packages, 5 }: 6 7 python3Packages.buildPythonApplication { 8 pname = "gpx-cmd-tools"; 9 version = "0-unstable-2020-08-08"; 10 pyproject = true; 11 12 src = fetchFromGitHub { 13 owner = "tkrajina"; 14 repo = "gpx-cmd-tools"; 15 rev = "e042c4d65cc153ddf3589b4d8723bed5f71a9d0d"; 16 hash = "sha256-x3/PNACBrT5XSlgpZj0WO27KW0DiF6Je2z3gX5g/Gz0="; 17 }; 18 19 build-system = with python3Packages; [ setuptools ]; 20 21 dependencies = with python3Packages; [ gpxpy ]; 22 23 meta = { 24 description = "Set of GPX command-line utilities"; 25 homepage = "https://github.com/tkrajina/gpx-cmd-tools"; 26 license = lib.licenses.asl20; 27 maintainers = [ lib.maintainers.sikmir ]; 28 }; 29 }