Merge pull request #109284 from fabaff/gps3

authored by

Sandro and committed by
GitHub
0f0c2509 22d184ae

+30 -1
+27
pkgs/development/python-modules/gps3/default.nix
···
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildPythonPackage rec { 7 + pname = "gps3"; 8 + version = "0.33.3"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "onkelbeh"; 12 + repo = pname; 13 + rev = version; 14 + sha256 = "0a0qpk7d2b1cld58qcdn6bxrkil6ascs51af01dy4p83062h1hi6"; 15 + }; 16 + 17 + # Project has no tests 18 + doCheck = false; 19 + pythonImportsCheck = [ "gps3" ]; 20 + 21 + meta = with lib; { 22 + description = "Python client for GPSD"; 23 + homepage = "https://github.com/onkelbeh/gps3"; 24 + license = with licenses; [ mit ]; 25 + maintainers = with maintainers; [ fab ]; 26 + }; 27 + }
+1 -1
pkgs/servers/home-assistant/component-packages.nix
··· 317 "google_travel_time" = ps: with ps; [ googlemaps ]; 318 "google_wifi" = ps: with ps; [ ]; 319 "gpmdp" = ps: with ps; [ websocket_client ]; 320 - "gpsd" = ps: with ps; [ ]; # missing inputs: gps3 321 "gpslogger" = ps: with ps; [ aiohttp-cors ]; 322 "graphite" = ps: with ps; [ ]; 323 "gree" = ps: with ps; [ ]; # missing inputs: greeclimate
··· 317 "google_travel_time" = ps: with ps; [ googlemaps ]; 318 "google_wifi" = ps: with ps; [ ]; 319 "gpmdp" = ps: with ps; [ websocket_client ]; 320 + "gpsd" = ps: with ps; [ gps3 ]; 321 "gpslogger" = ps: with ps; [ aiohttp-cors ]; 322 "graphite" = ps: with ps; [ ]; 323 "gree" = ps: with ps; [ ]; # missing inputs: greeclimate
+2
pkgs/top-level/python-packages.nix
··· 2678 2679 gprof2dot = callPackage ../development/python-modules/gprof2dot { inherit (pkgs) graphviz; }; 2680 2681 gpsoauth = callPackage ../development/python-modules/gpsoauth { }; 2682 2683 gpxpy = callPackage ../development/python-modules/gpxpy { };
··· 2678 2679 gprof2dot = callPackage ../development/python-modules/gprof2dot { inherit (pkgs) graphviz; }; 2680 2681 + gps3 = callPackage ../development/python-modules/gps3 { }; 2682 + 2683 gpsoauth = callPackage ../development/python-modules/gpsoauth { }; 2684 2685 gpxpy = callPackage ../development/python-modules/gpxpy { };