nixpkgs/pkgs/development/python-modules/gps3/default.nix
adisbladis 02dab4ab5c python3.pkgs.*: Explicitly pass buildPythonPackage format parameter
Long term we should move everything over to `pyproject = true`, but in
the mean time we can work towards deprecating the implicit `format` paremeter.

cc https://github.com/NixOS/nixpkgs/issues/253154
cc @mweinelt @figsoda
2023-12-07 17:46:49 +01:00

28 lines
627 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
}:
buildPythonPackage rec {
pname = "gps3";
version = "unstable-2017-11-01";
format = "setuptools";
src = fetchFromGitHub {
owner = "wadda";
repo = pname;
rev = "91adcd7073b891b135b2a46d039ce2125cf09a09";
hash = "sha256-sVK61l8YunKAGFTSAq/m5aUGFfnizwhqTYbdznBIKfk=";
};
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "gps3" ];
meta = with lib; {
description = "Python client for GPSD";
homepage = "https://github.com/wadda/gps3";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}