1{ lib
2, buildPythonPackage
3, fetchPypi
4, pytestCheckHook
5}:
6
7buildPythonPackage rec {
8 pname = "blinker";
9 version = "1.5";
10
11 src = fetchPypi {
12 inherit pname version;
13 hash = "sha256-kj5eL2nBVfLMQtr7vXDhbj/eJNLUqiq3L744YjiJJGI=";
14 };
15
16 nativeCheckInputs = [ pytestCheckHook ];
17
18 pythonImportsCheck = [ "blinker" ];
19
20 meta = with lib; {
21 homepage = "https://pythonhosted.org/blinker/";
22 description = "Fast, simple object-to-object and broadcast signaling";
23 license = licenses.mit;
24 maintainers = with maintainers; [ SuperSandro2000 ];
25 };
26}