about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/gps3/default.nix
blob: 76321182dcb6955b93ae1c6fda14f58c2399a0ea (plain) (blame)
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
{ lib
, buildPythonPackage
, fetchFromGitHub
}:

buildPythonPackage rec {
  pname = "gps3";
  version = "0.33.3";

  src = fetchFromGitHub {
    owner = "onkelbeh";
    repo = pname;
    rev = version;
    sha256 = "0a0qpk7d2b1cld58qcdn6bxrkil6ascs51af01dy4p83062h1hi6";
  };

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

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