1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 requests, 6}: 7 8buildPythonPackage rec { 9 pname = "ecoaliface"; 10 version = "0.7.0"; 11 format = "setuptools"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "sha256-Z1O+Lkq1sIpjkz0N4g4FCUzTw51V4fYxlUVg+2sZ/ac="; 16 }; 17 18 propagatedBuildInputs = [ requests ]; 19 20 # Project has no tests 21 doCheck = false; 22 23 pythonImportsCheck = [ "ecoaliface" ]; 24 25 meta = with lib; { 26 description = "Python library for interacting with eCoal water boiler controllers"; 27 homepage = "https://github.com/matkor/ecoaliface"; 28 license = with licenses; [ gpl3Plus ]; 29 maintainers = with maintainers; [ fab ]; 30 }; 31}