1{
2 lib,
3 buildPythonPackage,
4 fetchFromGitHub,
5}:
6
7buildPythonPackage {
8 pname = "gps3";
9 version = "unstable-2017-11-01";
10 format = "setuptools";
11
12 src = fetchFromGitHub {
13 owner = "wadda";
14 repo = "gps3";
15 rev = "91adcd7073b891b135b2a46d039ce2125cf09a09";
16 hash = "sha256-sVK61l8YunKAGFTSAq/m5aUGFfnizwhqTYbdznBIKfk=";
17 };
18
19 # Project has no tests
20 doCheck = false;
21 pythonImportsCheck = [ "gps3" ];
22
23 meta = with lib; {
24 description = "Python client for GPSD";
25 homepage = "https://github.com/wadda/gps3";
26 license = with licenses; [ mit ];
27 maintainers = with maintainers; [ fab ];
28 };
29}