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