python3Packages.scsgate: init at 0.1.0
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user