python3Packages.binho-host-adapter: modernize

This commit is contained in:
Harinn
2026-06-06 02:37:38 +07:00
parent cd492607a9
commit 8b0a38697e
@@ -6,14 +6,16 @@
pyserial,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "binho-host-adapter";
version = "0.1.6";
pyproject = true;
__structuredAttrs = true;
src = fetchPypi {
inherit pname version;
sha256 = "0mp8xa1qwaww2k5g2nqg7mcivzsbfw2ny1l9yjsi73109slafv8y";
inherit (finalAttrs) pname version;
hash = "sha256-Hm2nqE4gjBO19IkGbwV3S/8dWT0PW/HKFJwrjoPq6FY=";
};
build-system = [ setuptools ];
@@ -30,4 +32,4 @@ buildPythonPackage rec {
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ fab ];
};
}
})