17 buildPythonPackage rec {
18 pname = "pyserial-asyncio-fast";
22 src = fetchFromGitHub {
24 repo = "pyserial-asyncio-fast";
26 hash = "sha256-ZnXuwHvYq/BrEW6YV6T0sQ03u2rpwNBnpF+dXAmvxKQ=";
29 build-system = [ setuptools ];
31 dependencies = [ pyserial ];
33 pythonImportsCheck = [ "serial_asyncio_fast" ];
41 changelog = "https://github.com/home-assistant-libs/pyserial-asyncio-fast/releases/tag/${version}";
42 description = "Fast asyncio extension package for pyserial that implements eager writes";
43 homepage = "https://github.com/bdraco/pyserial-asyncio-fast";
44 license = licenses.bsd3;
45 maintainers = with maintainers; [ hexa ];