python3Packages.pycoolmasternet-async: init at 0.1.2
This commit is contained in:
parent
989eb20b4f
commit
80c38e967f
@ -0,0 +1,31 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, pythonOlder
|
||||||
|
, fetchFromGitHub
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "pycoolmasternet-async";
|
||||||
|
version = "0.1.2";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "OnFreund";
|
||||||
|
repo = "pycoolmasternet-async";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0qzdk18iqrvin8p8zrydf69d6pii3j47j11h7ymmsx08gh7c176g";
|
||||||
|
};
|
||||||
|
|
||||||
|
# no tests implemented
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "pycoolmasternet_async" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Python library to control CoolMasterNet HVAC bridges over asyncio";
|
||||||
|
homepage = "https://github.com/OnFreund/pycoolmasternet-async";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ dotlambda ];
|
||||||
|
};
|
||||||
|
}
|
@ -5234,6 +5234,8 @@ in {
|
|||||||
|
|
||||||
pycontrol4 = callPackage ../development/python-modules/pycontrol4 { };
|
pycontrol4 = callPackage ../development/python-modules/pycontrol4 { };
|
||||||
|
|
||||||
|
pycoolmasternet-async = callPackage ../development/python-modules/pycoolmasternet-async { };
|
||||||
|
|
||||||
pyfireservicerota = callPackage ../development/python-modules/pyfireservicerota { };
|
pyfireservicerota = callPackage ../development/python-modules/pyfireservicerota { };
|
||||||
|
|
||||||
pyflick = callPackage ../development/python-modules/pyflick { };
|
pyflick = callPackage ../development/python-modules/pyflick { };
|
||||||
|
Loading…
Reference in New Issue
Block a user