1{ lib
2, buildPythonPackage
3, fetchPypi
4, pytestCheckHook
5}:
6
7buildPythonPackage rec {
8 version = "2.0.7";
9 pname = "pydispatcher";
10
11 src = fetchPypi {
12 pname = "PyDispatcher";
13 inherit version;
14 hash = "sha256-t3fGrQgNwbrXSkwp1qRpFPpnAaxw+UsNZvvP3mL1vjE=";
15 };
16
17 nativeCheckInputs = [
18 pytestCheckHook
19 ];
20
21 meta = with lib; {
22 homepage = "https://pydispatcher.sourceforge.net/";
23 description = "Signal-registration and routing infrastructure for use in multiple contexts";
24 license = licenses.bsd3;
25 };
26
27}