python313Packages.nhc: init at 0.3.3
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
{
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
lib,
|
||||
nclib,
|
||||
setuptools,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "nhc";
|
||||
version = "0.3.3";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "vandeurenglenn";
|
||||
repo = "nhc";
|
||||
tag = "v${version}";
|
||||
hash = "sha256-s3DVdnjhRUZRG/LwKwOuZSiNtzpccBtHl/PNvux/NwQ=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [
|
||||
nclib
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "nhc" ];
|
||||
|
||||
# upstream has no test
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
changelog = "https://github.com/vandeurenglenn/nhc/blob/${src.tag}/CHANGELOG.md";
|
||||
description = "SDK for Niko Home Control";
|
||||
homepage = "https://github.com/vandeurenglenn/nhc";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ dotlambda ];
|
||||
};
|
||||
}
|
||||
@@ -9214,6 +9214,8 @@ self: super: with self; {
|
||||
|
||||
nh3 = callPackage ../development/python-modules/nh3 { };
|
||||
|
||||
nhc = callPackage ../development/python-modules/nhc { };
|
||||
|
||||
niaaml = callPackage ../development/python-modules/niaaml { };
|
||||
|
||||
nianet = callPackage ../development/python-modules/nianet { };
|
||||
|
||||
Reference in New Issue
Block a user