python313Packages.publicsuffixlist: 1.0.2.20250122 -> 1.0.2.20250124 (#376319)
[NixPkgs.git] / pkgs / development / python-modules / gps3 / default.nix
blob4f5cfb5d5b8667729c08bc5a6555c62e93f3daff
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5 }:
7 buildPythonPackage rec {
8   pname = "gps3";
9   version = "unstable-2017-11-01";
10   format = "setuptools";
12   src = fetchFromGitHub {
13     owner = "wadda";
14     repo = pname;
15     rev = "91adcd7073b891b135b2a46d039ce2125cf09a09";
16     hash = "sha256-sVK61l8YunKAGFTSAq/m5aUGFfnizwhqTYbdznBIKfk=";
17   };
19   # Project has no tests
20   doCheck = false;
21   pythonImportsCheck = [ "gps3" ];
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   };