1{ lib 2, buildPythonPackage 3, fetchPypi 4, requests 5}: 6 7buildPythonPackage rec { 8 pname = "ecoaliface"; 9 version = "0.5.0"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "f17b3452cfd31bb8c3509d59b846889c81db5fb85082c061c32703162cbe9083"; 14 }; 15 16 propagatedBuildInputs = [ 17 requests 18 ]; 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}