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