1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 setuptools, 6}: 7 8buildPythonPackage rec { 9 pname = "pyitachip2ir"; 10 version = "0.0.7"; 11 pyproject = true; 12 13 src = fetchPypi { 14 inherit pname version; 15 hash = "sha256-T/Q3tZTTwqlaHDR2l2nRLISC4LLrOPZZv14sRxYyqDQ="; 16 }; 17 18 build-system = [ setuptools ]; 19 20 # Package has no tests 21 doCheck = false; 22 23 pythonImportsCheck = [ "pyitachip2ir" ]; 24 25 meta = { 26 description = "Library for sending IR commands to an ITach IP2IR gateway"; 27 homepage = "https://github.com/alanfischer/itachip2ir"; 28 license = lib.licenses.mit; 29 maintainers = [ lib.maintainers.jamiemagee ]; 30 }; 31}