depot/third_party/nixpkgs/pkgs/development/python-modules/pydispatcher/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

26 lines
560 B
Nix

{
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 = with lib; {
homepage = "https://pydispatcher.sourceforge.net/";
description = "Signal-registration and routing infrastructure for use in multiple contexts";
license = licenses.bsd3;
};
}