pythonPackages.pydispatcher: init -> 2.0.5

This commit is contained in:
Michiel Leenaars 2016-06-03 20:01:26 +02:00
parent 19eac13f3d
commit 93a9643aed

View file

@ -17435,6 +17435,21 @@ in modules // {
};
});
pydispatcher = buildPythonPackage (rec {
version = "2.0.5";
disabled = isPy35;
name = "pydispatcher-${version}";
src = pkgs.fetchurl {
url = "mirror://pypi/P/PyDispatcher/PyDispatcher-${version}.tar.gz";
sha256 = "1bswbmhlbqdxlgbxlb6xrlm4k253sg8nvpl1whgsys8p3fg0cw2m";
};
meta = {
homepage = http://pydispatcher.sourceforge.net/;
description = "Signal-registration and routing infrastructure for use in multiple contexts";
license = licenses.bsd3;
};
});
pydot = buildPythonPackage rec {
name = "pydot-1.0.2";