blob: 50597296374f2f7a6e34a59f560669cfaff43e2f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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 ];
};
}
|