27 lines
536 B
Nix
27 lines
536 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
version = "2.0.7";
|
|
pname = "pydispatcher";
|
|
|
|
src = fetchPypi {
|
|
pname = "PyDispatcher";
|
|
inherit version;
|
|
hash = "sha256-t3fGrQgNwbrXSkwp1qRpFPpnAaxw+UsNZvvP3mL1vjE=";
|
|
};
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://pydispatcher.sourceforge.net/";
|
|
description = "Signal-registration and routing infrastructure for use in multiple contexts";
|
|
license = licenses.bsd3;
|
|
};
|
|
|
|
}
|