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