pydispatcher: re-enable on Python3.5

This commit is contained in:
Dario Bertini 2016-09-18 21:51:52 +01:00
parent 5ea0390493
commit 288bb906fe
No known key found for this signature in database
GPG Key ID: F7C180DFCB78F7A0

View File

@ -18775,13 +18775,18 @@ 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";
};
buildInputs = with self; [ pytest ];
checkPhase = ''
py.test
'';
meta = {
homepage = http://pydispatcher.sourceforge.net/;
description = "Signal-registration and routing infrastructure for use in multiple contexts";