nixpkgs/pkgs/development/python-modules/pydispatcher/default.nix
2023-03-03 23:56:51 +01:00

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