nixpkgs/pkgs/development/python-modules/pydispatcher/default.nix
2022-09-19 10:37:39 +02:00

28 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;
};
}