nixpkgs/pkgs/development/python-modules/bt-proximity/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

34 lines
674 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pybluez
}:
buildPythonPackage rec {
pname = "bt-proximity";
version = "0.2.1";
format = "setuptools";
src = fetchPypi {
pname = "bt_proximity";
inherit version;
sha256 = "0xlif91vblbz065531yjf8nmlcahrl4q5pz52bc1jmzz7iv9hpgq";
};
propagatedBuildInputs = [
pybluez
];
# there are no tests
doCheck = false;
pythonImportsCheck = [ "bt_proximity" ];
meta = with lib; {
description = "Bluetooth Proximity Detection using Python";
homepage = "https://github.com/FrederikBolding/bluetooth-proximity";
maintainers = with maintainers; [ peterhoeg ];
license = licenses.asl20;
};
}