summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/gps3/default.nix
blob: 972c73da822492e3a2029c68a735c6d82d43d350 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
}:

buildPythonPackage {
  pname = "gps3";
  version = "unstable-2017-11-01";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "wadda";
    repo = "gps3";
    rev = "91adcd7073b891b135b2a46d039ce2125cf09a09";
    hash = "sha256-sVK61l8YunKAGFTSAq/m5aUGFfnizwhqTYbdznBIKfk=";
  };

  # Project has no tests
  doCheck = false;
  pythonImportsCheck = [ "gps3" ];

  meta = {
    description = "Python client for GPSD";
    homepage = "https://github.com/wadda/gps3";
    license = with lib.licenses; [ mit ];
    maintainers = with lib.maintainers; [ fab ];
  };
}