5083ee08a2
GitOrigin-RevId: 10ecda252ce1b3b1d6403caeadbcc8f30d5ab796
27 lines
529 B
Nix
27 lines
529 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
version = "2.0.6";
|
|
pname = "pydispatcher";
|
|
|
|
src = fetchPypi {
|
|
pname = "PyDispatcher";
|
|
inherit version;
|
|
hash = "sha256-PX5PQ8cAAKHcox+SaU6Z0BAZNPpuq11UVadYhY2G35U=";
|
|
};
|
|
|
|
checkInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "http://pydispatcher.sourceforge.net/";
|
|
description = "Signal-registration and routing infrastructure for use in multiple contexts";
|
|
license = licenses.bsd3;
|
|
};
|
|
|
|
}
|