python3Packages.pypjlink2: init at 1.2.1 (#432426)
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 ];
|
||||
};
|
||||
}
|
||||
@@ -4465,7 +4465,8 @@
|
||||
];
|
||||
"pjlink" =
|
||||
ps: with ps; [
|
||||
]; # missing inputs: pypjlink2
|
||||
pypjlink2
|
||||
];
|
||||
"plaato" =
|
||||
ps: with ps; [
|
||||
aiohasupervisor
|
||||
@@ -7484,6 +7485,7 @@
|
||||
"pi_hole"
|
||||
"picnic"
|
||||
"ping"
|
||||
"pjlink"
|
||||
"plaato"
|
||||
"plant"
|
||||
"playstation_network"
|
||||
|
||||
@@ -13561,6 +13561,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