8 buildPythonPackage rec {
9 pname = "pymata-express";
11 format = "setuptools";
12 disabled = pythonOlder "3.7";
14 src = fetchFromGitHub {
18 sha256 = "1mibyn84kjahrv3kn51yl5mhkyig4piv6wanggzjflh5nm96bhy8";
21 propagatedBuildInputs = [
25 # Project has no tests
28 pythonImportsCheck = [ "pymata_express" ];
31 description = "Python Asyncio Arduino Firmata Client";
33 Pymata-Express is a Python Firmata Protocol client. When used in conjunction
34 with an Arduino Firmata sketch, it permits you to control and monitor Arduino
35 hardware remotely over a serial link.
37 homepage = "https://mryslab.github.io/pymata-express/";
38 license = with licenses; [ agpl3Plus ];
39 maintainers = with maintainers; [ fab ];