mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
27 lines
560 B
Nix
27 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;
|
|
};
|
|
}
|