python3Packages.gpxpy: init at 1.3.5
This commit is contained in:
parent
6d65b859ed
commit
9e9a1050e5
27
pkgs/development/python-modules/gpxpy/default.nix
Normal file
27
pkgs/development/python-modules/gpxpy/default.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{ lib, fetchFromGitHub, buildPythonPackage, python, lxml }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "gpxpy";
|
||||
version = "1.3.5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "tkrajina";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "18r7pfda7g3l0hv8j9565n52cvvgjxiiqqzagfdfaba1djgl6p8b";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ lxml ];
|
||||
|
||||
checkPhase = ''
|
||||
${python.interpreter} -m unittest test
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python GPX (GPS eXchange format) parser";
|
||||
homepage = "https://github.com/tkrajina/gpxpy";
|
||||
license = licenses.asl20;
|
||||
platforms = platforms.unix;
|
||||
maintainers = with maintainers; [ sikmir ];
|
||||
};
|
||||
}
|
@ -2652,6 +2652,8 @@ in {
|
||||
|
||||
gpsoauth = callPackage ../development/python-modules/gpsoauth { };
|
||||
|
||||
gpxpy = callPackage ../development/python-modules/gpxpy { };
|
||||
|
||||
grip = callPackage ../development/python-modules/grip { };
|
||||
|
||||
gst-python = callPackage ../development/python-modules/gst-python {
|
||||
|
Loading…
Reference in New Issue
Block a user