default.nix (762B)
1 { 2 lib, 3 fetchFromGitHub, 4 python3Packages, 5 pygnssutils, 6 }: 7 8 python3Packages.buildPythonApplication rec { 9 pname = "pygpsclient"; 10 version = "1.4.27"; 11 pyproject = true; 12 13 src = fetchFromGitHub { 14 owner = "semuconsulting"; 15 repo = "PyGPSClient"; 16 rev = "v${version}"; 17 hash = "sha256-hbTpumOx1k3osVJjACkHtIph2EYUqLdpTnQl/ogv50o="; 18 }; 19 20 build-system = with python3Packages; [ setuptools ]; 21 22 dependencies = with python3Packages; [ 23 requests 24 pillow 25 pygnssutils 26 pyserial 27 tkinter 28 ]; 29 30 meta = { 31 description = "GNSS Diagnostic and UBX Configuration GUI Application"; 32 homepage = "https://github.com/semuconsulting/PyGPSClient"; 33 license = lib.licenses.bsd3; 34 maintainers = [ lib.maintainers.sikmir ]; 35 }; 36 }