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