python3Packages.pyrecswitch: init at 1.0.2 (#432582)

This commit is contained in:
Martin Weinelt
2025-08-10 20:42:05 +02:00
committed by GitHub
3 changed files with 40 additions and 1 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 ];
};
}
@@ -4882,7 +4882,8 @@
];
"recswitch" =
ps: with ps; [
]; # missing inputs: pyrecswitch
pyrecswitch
];
"reddit" =
ps: with ps; [
praw
+2
View File
@@ -13764,6 +13764,8 @@ self: super: with self; {
}
);
pyrecswitch = callPackage ../development/python-modules/pyrecswitch { };
pyrect = callPackage ../development/python-modules/pyrect { };
pyregion = callPackage ../development/python-modules/pyregion { };