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