python3Packages.rcon: init at 2.4.9 (#423385)

This commit is contained in:
Arne Keller
2026-07-22 07:06:06 +00:00
committed by GitHub
3 changed files with 41 additions and 0 deletions
+6
View File
@@ -12306,6 +12306,12 @@
githubId = 67414100;
name = "Jachym Putta";
};
jack-avery = {
email = "jack.avery.business@gmail.com";
github = "jack-avery";
githubId = 47289484;
name = "Jack Avery";
};
jackcres = {
email = "crespomerchano@gmail.com";
github = "omarcresp";
@@ -0,0 +1,33 @@
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
setuptools-scm,
pytestCheckHook,
}:
buildPythonPackage (finalAttrs: {
pname = "rcon";
version = "2.4.9";
pyproject = true;
src = fetchPypi {
inherit (finalAttrs) pname version;
hash = "sha256-1BqDEdwTNS2jUWP0ajzBPrIPXN4Sl7dbVudkXvdtCkg=";
};
build-system = [
setuptools
setuptools-scm
];
nativeCheckInputs = [ pytestCheckHook ];
meta = {
changelog = "https://github.com/conqp/rcon/releases/tag/v${finalAttrs.version}";
description = "Python RCON client library";
homepage = "https://pypi.org/project/rcon/";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ jack-avery ];
};
})
+2
View File
@@ -17414,6 +17414,8 @@ self: super: with self; {
rclone-python = callPackage ../development/python-modules/rclone-python { };
rcon = callPackage ../development/python-modules/rcon { };
rcssmin = callPackage ../development/python-modules/rcssmin { };
rctclient = callPackage ../development/python-modules/rctclient { };