Merge pull request #109970 from fabaff/pymata-express

authored by Sandro and committed by GitHub 48e2a272 9f4448eb

+41 -1
+38
pkgs/development/python-modules/pymata-express/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , pyserial 5 + , pytestCheckHook 6 + , pythonOlder 7 + }: 8 + 9 + buildPythonPackage rec { 10 + pname = "pymata-express"; 11 + version = "1.19"; 12 + disabled = pythonOlder "3.7"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "MrYsLab"; 16 + repo = pname; 17 + rev = "v${version}"; 18 + sha256 = "0gfjmqcxwsnfjgll6ql5xd1n3xp4klf4fcaajaivh053i02p0a79"; 19 + }; 20 + 21 + propagatedBuildInputs = [ pyserial ]; 22 + 23 + # Project has no tests 24 + doCheck = false; 25 + pythonImportsCheck = [ "pymata_express" ]; 26 + 27 + meta = with lib; { 28 + description = "Python Asyncio Arduino Firmata Client"; 29 + longDescription = '' 30 + Pymata-Express is a Python Firmata Protocol client. When used in conjunction 31 + with an Arduino Firmata sketch, it permits you to control and monitor Arduino 32 + hardware remotely over a serial link. 33 + ''; 34 + homepage = "https://mryslab.github.io/pymata-express/"; 35 + license = with licenses; [ agpl3Plus ]; 36 + maintainers = with maintainers; [ fab ]; 37 + }; 38 + }
+1 -1
pkgs/servers/home-assistant/component-packages.nix
··· 253 253 "filter" = ps: with ps; [ aiohttp-cors sqlalchemy ]; 254 254 "fints" = ps: with ps; [ fints ]; 255 255 "fireservicerota" = ps: with ps; [ ]; # missing inputs: pyfireservicerota 256 - "firmata" = ps: with ps; [ ]; # missing inputs: pymata-express 256 + "firmata" = ps: with ps; [ pymata-express ]; 257 257 "fitbit" = ps: with ps; [ aiohttp-cors fitbit ]; 258 258 "fixer" = ps: with ps; [ fixerio ]; 259 259 "fleetgo" = ps: with ps; [ ]; # missing inputs: ritassist
+2
pkgs/top-level/python-packages.nix
··· 5540 5540 5541 5541 pymaging_png = callPackage ../development/python-modules/pymaging_png { }; 5542 5542 5543 + pymata-express = callPackage ../development/python-modules/pymata-express { }; 5544 + 5543 5545 pymatgen = callPackage ../development/python-modules/pymatgen { }; 5544 5546 5545 5547 pymatgen-lammps = callPackage ../development/python-modules/pymatgen-lammps { };