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