python3Packages.tellcore-py: init at 1.1.3
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
setuptools,
|
||||
pytestCheckHook,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "tellcore-py";
|
||||
version = "1.1.3";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "erijo";
|
||||
repo = "tellcore-py";
|
||||
tag = "v${version}";
|
||||
hash = "sha256-AcdYMzd3Ln65PZ+weSxyR+CwXmdi2A+wSE6B/4hepE0=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
nativeCheckInputs = [ pytestCheckHook ];
|
||||
|
||||
pythonImportsCheck = [ "tellcore" ];
|
||||
|
||||
meta = {
|
||||
description = "Python wrapper for Telldus' home automation library";
|
||||
homepage = "https://github.com/erijo/tellcore-py";
|
||||
changelog = "https://github.com/erijo/tellcore-py/releases/tag/v${version}";
|
||||
license = lib.licenses.gpl3Plus;
|
||||
maintainers = [ lib.maintainers.jamiemagee ];
|
||||
};
|
||||
}
|
||||
@@ -17909,6 +17909,8 @@ self: super: with self; {
|
||||
|
||||
tellcore-net = callPackage ../development/python-modules/tellcore-net { };
|
||||
|
||||
tellcore-py = callPackage ../development/python-modules/tellcore-py { };
|
||||
|
||||
tellduslive = callPackage ../development/python-modules/tellduslive { };
|
||||
|
||||
temescal = callPackage ../development/python-modules/temescal { };
|
||||
|
||||
Reference in New Issue
Block a user