python3Packages.pydle: init at 1.1.0

This commit is contained in:
polyfloyd
2025-08-29 17:40:11 +02:00
parent 2cdf6e75ea
commit e964eef816
2 changed files with 51 additions and 0 deletions
@@ -0,0 +1,49 @@
{
buildPythonPackage,
fetchFromGitea,
lib,
nix-update-script,
poetry-core,
pytestCheckHook,
pure-sasl,
pytest-asyncio,
}:
buildPythonPackage rec {
pname = "pydle";
version = "1.1.0";
pyproject = true;
src = fetchFromGitea {
domain = "codeberg.org";
owner = "shiz";
repo = "pydle";
tag = "v${version}";
hash = "sha256-LxlE0JVKgwDcPB7QuKkmfBWG33pDzG0F9qaL88xF8r4=";
};
build-system = [ poetry-core ];
dependencies = [
pure-sasl
];
pythonImportsCheck = [
"pydle"
];
nativeCheckInputs = [
pytestCheckHook
pytest-asyncio
];
__darwinAllowLocalNetworking = true;
passthru.updateScript = nix-update-script { };
meta = {
description = "IRCv3-compliant Python 3 IRC library";
homepage = "https://codeberg.org/shiz/pydle";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ polyfloyd ];
};
}
+2
View File
@@ -12775,6 +12775,8 @@ self: super: with self; {
pydispatcher = callPackage ../development/python-modules/pydispatcher { };
pydle = callPackage ../development/python-modules/pydle { };
pydmd = callPackage ../development/python-modules/pydmd { };
pydocstyle = callPackage ../development/python-modules/pydocstyle { };