1{ lib
2, buildPythonPackage
3, fetchPypi
4, pytestCheckHook
5, pytest-asyncio
6, setuptools
7}:
8
9buildPythonPackage rec {
10 pname = "blinker";
11 version = "1.6.2";
12 format = "pyproject";
13
14 src = fetchPypi {
15 inherit pname version;
16 hash = "sha256-Sv095m7zqfgGdVn7ehy+VVwX3L4VlxsF0bYlw+er4hM=";
17 };
18
19 nativeBuildInputs = [
20 setuptools
21 ];
22
23 pythonImportsCheck = [
24 "blinker"
25 ];
26
27 nativeCheckInputs = [
28 pytest-asyncio
29 pytestCheckHook
30 ];
31
32 meta = with lib; {
33 changelog = "https://github.com/pallets-eco/blinker/releases/tag/${version}";
34 description = "Fast Python in-process signal/event dispatching system";
35 homepage = "https://github.com/pallets-eco/blinker/";
36 license = licenses.mit;
37 maintainers = with maintainers; [ ];
38 };
39}