1{ lib
2, buildPythonPackage
3, fetchFromGitHub
4}:
5
6buildPythonPackage rec {
7 pname = "gps3";
8 version = "unstable-2017-11-01";
9
10 src = fetchFromGitHub {
11 owner = "wadda";
12 repo = pname;
13 rev = "91adcd7073b891b135b2a46d039ce2125cf09a09";
14 hash = "sha256-sVK61l8YunKAGFTSAq/m5aUGFfnizwhqTYbdznBIKfk=";
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/wadda/gps3";
24 license = with licenses; [ mit ];
25 maintainers = with maintainers; [ fab ];
26 };
27}