blob: eb61c6b0b880f9e0263364ffa3cac2cdd7b702e5 (
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
50
|
{
lib,
buildPythonPackage,
fetchPypi,
mock,
pytest-asyncio_0,
pytest-trio,
pytestCheckHook,
setuptools,
setuptools-scm,
twisted,
typing-extensions,
wheel,
}:
buildPythonPackage rec {
pname = "pyee";
version = "13.0.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-s5HjxaQ00fURiiVhUAHbyPZpz0EKtn0ExNTgfFVIHDc=";
};
nativeBuildInputs = [
setuptools
setuptools-scm
wheel
];
propagatedBuildInputs = [ typing-extensions ];
nativeCheckInputs = [
mock
pytest-asyncio_0
pytest-trio
pytestCheckHook
twisted
];
pythonImportsCheck = [ "pyee" ];
meta = {
description = "Port of Node.js's EventEmitter to Python";
homepage = "https://github.com/jfhbrook/pyee";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ kmein ];
};
}
|