blob: d227c9cac0342b6c1964575381231626bd10d699 (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
irctokens,
pendulum,
freezegun,
unittestCheckHook,
}:
buildPythonPackage rec {
pname = "ircstates";
version = "0.13.0";
pyproject = true;
src = fetchFromGitHub {
owner = "jesopo";
repo = "ircstates";
rev = "v${version}";
hash = "sha256-Mq9aOj6PXzPjaz3ofoPcAbur59oUWffmEg8aHt0v+0Q=";
};
build-system = [ setuptools ];
pythonRelaxDeps = [ "pendulum" ];
dependencies = [
irctokens
pendulum
];
nativeCheckInputs = [
freezegun
unittestCheckHook
];
pythonImportsCheck = [ "ircstates" ];
meta = {
description = "sans-I/O IRC session state parsing library";
license = lib.licenses.mit;
homepage = "https://github.com/jesopo/ircstates";
maintainers = with lib.maintainers; [ hexa ];
};
}
|