9 buildPythonPackage rec {
10 pname = "pymata-express";
12 format = "setuptools";
13 disabled = pythonOlder "3.7";
15 src = fetchFromGitHub {
19 sha256 = "1mibyn84kjahrv3kn51yl5mhkyig4piv6wanggzjflh5nm96bhy8";
22 propagatedBuildInputs = [ pyserial ];
24 # Project has no tests
27 pythonImportsCheck = [ "pymata_express" ];
30 description = "Python Asyncio Arduino Firmata Client";
32 Pymata-Express is a Python Firmata Protocol client. When used in conjunction
33 with an Arduino Firmata sketch, it permits you to control and monitor Arduino
34 hardware remotely over a serial link.
36 homepage = "https://mryslab.github.io/pymata-express/";
37 license = with licenses; [ agpl3Plus ];
38 maintainers = with maintainers; [ fab ];