nixpkgs/pkgs/development/python-modules/hlk-sw16/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

30 lines
615 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
}:
buildPythonPackage rec {
pname = "hlk-sw16";
version = "0.0.9";
format = "setuptools";
src = fetchFromGitHub {
owner = "jameshilliard";
repo = "hlk-sw16";
rev = version;
sha256 = "010s85nr6xn89i8yvdagg72a97dh1v2pyfqa33v76p9p8xbgh8dz";
};
# no tests implemented
doCheck = false;
pythonImportsCheck = [ "hlk_sw16" ];
meta = with lib; {
description = "Python client for HLK-SW16";
homepage = "https://github.com/jameshilliard/hlk-sw16";
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
};
}