1{ lib 2, buildPythonPackage 3, fetchPypi 4, requests 5}: 6 7buildPythonPackage rec { 8 pname = "pythonegardia"; 9 version = "1.0.51"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "b99217e34c59bfae059db400acef99d3d32237d13da6fdce9e0d4decc9a07e61"; 14 }; 15 16 propagatedBuildInputs = [ 17 requests 18 ]; 19 20 # Project has no tests, only two test file for manual interaction 21 doCheck = false; 22 pythonImportsCheck = [ "pythonegardia" ]; 23 24 meta = with lib; { 25 description = "Python interface with Egardia/Woonveilig alarms"; 26 homepage = "https://github.com/jeroenterheerdt/python-egardia"; 27 license = with licenses; [ mit ]; 28 maintainers = with maintainers; [ fab ]; 29 }; 30}