Files
nixpkgs/pkgs/development/python-modules/gps3/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

30 lines
627 B
Nix

{
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 ];
};
}