python3Packages.pyrecswitch: init at 1.0.2

This commit is contained in:
Jamie Magee
2025-08-10 10:52:37 -07:00
parent 29cf5a6887
commit 33e841a2fd
2 changed files with 38 additions and 0 deletions
@@ -0,0 +1,36 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
pycryptodome,
setuptools,
}:
buildPythonPackage rec {
pname = "pyrecswitch";
version = "1.0.2";
pyproject = true;
src = fetchFromGitHub {
owner = "marcolertora";
repo = "pyrecswitch";
tag = version;
hash = "sha256-z9dOJ7WgUR2ntU6boUInRyKxSPBSoNWGtE3pOZcFYA0=";
};
build-system = [ setuptools ];
dependencies = [ pycryptodome ];
# Package has no tests
doCheck = false;
pythonImportsCheck = [ "pyrecswitch" ];
meta = {
description = "Pure-python interface for controlling Ankuoo RecSwitch MS6126";
homepage = "https://github.com/marcolertora/pyrecswitch";
license = lib.licenses.agpl3Plus;
maintainers = [ lib.maintainers.jamiemagee ];
};
}
+2
View File
@@ -13762,6 +13762,8 @@ self: super: with self; {
}
);
pyrecswitch = callPackage ../development/python-modules/pyrecswitch { };
pyrect = callPackage ../development/python-modules/pyrect { };
pyregion = callPackage ../development/python-modules/pyregion { };