python3Packages.hegel-ip-client: init at 0.1.4

This commit is contained in:
Jamie Magee
2026-03-22 12:48:29 -07:00
parent 127473ff31
commit 7e89adfffa
2 changed files with 36 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
}:
buildPythonPackage (finalAttrs: {
pname = "hegel-ip-client";
version = "0.1.4";
pyproject = true;
src = fetchFromGitHub {
owner = "boazca";
repo = "hegel-ip-client";
tag = "v${finalAttrs.version}";
hash = "sha256-IKOtZ6mxbFvH1cLT45j/OD3OzAwy6vmtdF584LS5M7A=";
};
build-system = [ setuptools ];
# no tests
doCheck = false;
pythonImportsCheck = [ "hegel_ip_client" ];
meta = {
description = "Python client library for Hegel amplifiers";
homepage = "https://github.com/boazca/hegel-ip-client";
changelog = "https://github.com/boazca/hegel-ip-client/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.jamiemagee ];
};
})

View File

@@ -6958,6 +6958,8 @@ self: super: with self; {
hebg = callPackage ../development/python-modules/hebg { };
hegel-ip-client = callPackage ../development/python-modules/hegel-ip-client { };
helion = callPackage ../development/python-modules/helion { };
helium = callPackage ../development/python-modules/helium { };