python3Packages.gps3: init at 0.33.3

This commit is contained in:
Fabian Affolter 2021-01-13 15:37:32 +01:00
parent b451286b1f
commit b343e5375f
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,27 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
}:
buildPythonPackage rec {
pname = "gps3";
version = "0.33.3";
src = fetchFromGitHub {
owner = "onkelbeh";
repo = pname;
rev = version;
sha256 = "0a0qpk7d2b1cld58qcdn6bxrkil6ascs51af01dy4p83062h1hi6";
};
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "gps3" ];
meta = with lib; {
description = "Python client for GPSD";
homepage = "https://github.com/onkelbeh/gps3";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}

View File

@ -2674,6 +2674,8 @@ in {
gprof2dot = callPackage ../development/python-modules/gprof2dot { inherit (pkgs) graphviz; };
gps3 = callPackage ../development/python-modules/gps3 { };
gpsoauth = callPackage ../development/python-modules/gpsoauth { };
gpxpy = callPackage ../development/python-modules/gpxpy { };