python3Packages.binho-host-adapter: migrate to pyproject

This commit is contained in:
Harinn
2026-06-06 02:33:40 +07:00
parent 95543ad778
commit cd492607a9
@@ -2,20 +2,23 @@
lib,
buildPythonPackage,
fetchPypi,
setuptools,
pyserial,
}:
buildPythonPackage rec {
pname = "binho-host-adapter";
version = "0.1.6";
format = "setuptools";
pyproject = true;
src = fetchPypi {
inherit pname version;
sha256 = "0mp8xa1qwaww2k5g2nqg7mcivzsbfw2ny1l9yjsi73109slafv8y";
};
propagatedBuildInputs = [ pyserial ];
build-system = [ setuptools ];
dependencies = [ pyserial ];
# Project has no tests
doCheck = false;