1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 pytestCheckHook,
6}:
7
8buildPythonPackage rec {
9 version = "2.0.7";
10 format = "setuptools";
11 pname = "pydispatcher";
12
13 src = fetchPypi {
14 pname = "PyDispatcher";
15 inherit version;
16 hash = "sha256-t3fGrQgNwbrXSkwp1qRpFPpnAaxw+UsNZvvP3mL1vjE=";
17 };
18
19 nativeCheckInputs = [ pytestCheckHook ];
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}