python3Packages.ecoaliface: init at 0.4.0

This commit is contained in:
Fabian Affolter 2021-06-20 14:39:49 +02:00
parent 9770439689
commit f232434154
2 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,31 @@
{ lib
, buildPythonPackage
, fetchPypi
, requests
}:
buildPythonPackage rec {
pname = "ecoaliface";
version = "0.4.0";
src = fetchPypi {
inherit pname version;
sha256 = "1hzx0r3311f952jik3pgmrg74xp5m6w9c5v6snfrb8w2m19vs6qy";
};
propagatedBuildInputs = [
requests
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "ecoaliface" ];
meta = with lib; {
description = "Python library for interacting with eCoal water boiler controllers";
homepage = "https://github.com/matkor/ecoaliface";
license = with licenses; [ gpl3Plus ];
maintainers = with maintainers; [ fab ];
};
}

View file

@ -2221,6 +2221,8 @@ in {
ecdsa = callPackage ../development/python-modules/ecdsa { };
ecoaliface = callPackage ../development/python-modules/ecoaliface { };
ecos = callPackage ../development/python-modules/ecos { };
ecpy = callPackage ../development/python-modules/ecpy { };