at 23.05-pre 27 lines 529 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, pytestCheckHook 5}: 6 7buildPythonPackage rec { 8 version = "2.0.6"; 9 pname = "pydispatcher"; 10 11 src = fetchPypi { 12 pname = "PyDispatcher"; 13 inherit version; 14 hash = "sha256-PX5PQ8cAAKHcox+SaU6Z0BAZNPpuq11UVadYhY2G35U="; 15 }; 16 17 checkInputs = [ 18 pytestCheckHook 19 ]; 20 21 meta = with lib; { 22 homepage = "http://pydispatcher.sourceforge.net/"; 23 description = "Signal-registration and routing infrastructure for use in multiple contexts"; 24 license = licenses.bsd3; 25 }; 26 27}