python3Packages.pypjlink2: init at 1.2.1
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
appdirs,
|
||||
pytestCheckHook,
|
||||
setuptools,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pypjlink2";
|
||||
version = "1.2.1";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "benoitlouy";
|
||||
repo = "pypjlink";
|
||||
tag = "v${version}";
|
||||
hash = "sha256-0RVI9DX5JaVWntSu5du5SU45NC70TZJyVrvMuVR7grA=";
|
||||
};
|
||||
|
||||
build-system = [
|
||||
setuptools
|
||||
];
|
||||
|
||||
dependencies = [
|
||||
appdirs
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"pypjlink"
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Python implementation of the PJLink protocol for controlling digital projectors";
|
||||
homepage = "https://github.com/benoitlouy/pypjlink";
|
||||
changelog = "https://github.com/benoitlouy/pypjlink/releases/tag/v${version}";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = [ lib.maintainers.jamiemagee ];
|
||||
};
|
||||
}
|
||||
@@ -13559,6 +13559,8 @@ self: super: with self; {
|
||||
|
||||
pypitoken = callPackage ../development/python-modules/pypitoken { };
|
||||
|
||||
pypjlink2 = callPackage ../development/python-modules/pypjlink2 { };
|
||||
|
||||
pyplaato = callPackage ../development/python-modules/pyplaato { };
|
||||
|
||||
pyplatec = callPackage ../development/python-modules/pyplatec { };
|
||||
|
||||
Reference in New Issue
Block a user