python3Packages.somecomfort: init at 0.5.2
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, prettytable
|
||||
, requests
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "somecomfort";
|
||||
version = "0.5.2";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "681f44449e8c0a923305aa05aa5262f4d2304a6ecea496caa8d5a51b724a0fef";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
requests
|
||||
prettytable
|
||||
];
|
||||
|
||||
# tests require network access
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "somecomfort" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Client for Honeywell's US-based cloud devices";
|
||||
homepage = "https://github.com/kk7ds/somecomfort";
|
||||
license = licenses.gpl3Only;
|
||||
maintainers = with maintainers; [ dotlambda ];
|
||||
};
|
||||
}
|
||||
@@ -8002,6 +8002,8 @@ in {
|
||||
|
||||
somajo = callPackage ../development/python-modules/somajo { };
|
||||
|
||||
somecomfort = callPackage ../development/python-modules/somecomfort { };
|
||||
|
||||
sopel = callPackage ../development/python-modules/sopel { };
|
||||
|
||||
sorl_thumbnail = callPackage ../development/python-modules/sorl_thumbnail { };
|
||||
|
||||
Reference in New Issue
Block a user