1{ lib
2, buildPythonPackage
3, fetchFromGitHub
4}:
5
6buildPythonPackage 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}