python3Packages.scsgate: init at 0.1.0

This commit is contained in:
Jamie Magee
2025-08-22 23:26:45 -07:00
parent 316287500d
commit 729428cb73
2 changed files with 42 additions and 0 deletions
@@ -0,0 +1,40 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
pyserial,
pyyaml,
setuptools,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "scsgate";
version = "0.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "flavio";
repo = "scsgate";
tag = version;
hash = "sha256-wVzXKOKljENAKppod+guqm+0XMPenLgOsZzMQVTBo+k=";
};
build-system = [ setuptools ];
dependencies = [
pyserial
pyyaml
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "scsgate" ];
meta = {
description = "Python module to interact with SCSGate";
homepage = "https://github.com/flavio/scsgate";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.jamiemagee ];
};
}
+2
View File
@@ -16301,6 +16301,8 @@ self: super: with self; {
scs = callPackage ../development/python-modules/scs { };
scsgate = callPackage ../development/python-modules/scsgate { };
scspell = callPackage ../development/python-modules/scspell { };
sdbus = callPackage ../development/python-modules/sdbus { };