Merge pull request #21670 from berdario/python36-xdis-zopetesting
Python3.6 compatibility upgrade for xdis zopetesting
This commit is contained in:
commit
8f046ce0c0
|
@ -12690,12 +12690,13 @@ in {
|
|||
|
||||
xdis = buildPythonPackage rec {
|
||||
name = "xdis-${version}";
|
||||
version = "2.3.1";
|
||||
version = "3.2.4";
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/x/xdis/${name}.tar.gz";
|
||||
sha256 = "1bi53n9fifjz2ja5inm546vzhjpgwx6n0qrhp106fss7bdm44a4v";
|
||||
sha256 = "0g2lh70837vigcbc1i58349wp2xzrhlsg2ahc92sn8d3jwxja4dk";
|
||||
};
|
||||
propagatedBuildInputs = with self; [ nose ];
|
||||
propagatedBuildInputs = with self; [ nose six ];
|
||||
|
||||
meta = {
|
||||
description = "Python cross-version byte-code disassembler and marshal routines";
|
||||
homepage = https://github.com/rocky/python-xdis/;
|
||||
|
@ -27628,11 +27629,11 @@ EOF
|
|||
|
||||
zope_testing = buildPythonPackage rec {
|
||||
name = "zope.testing-${version}";
|
||||
version = "4.5.0";
|
||||
version = "4.6.1";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/z/zope.testing/${name}.tar.gz";
|
||||
sha256 = "1yvglxhzvhl45mndvn9gskx2ph30zz1bz7rrlyfs62fv2pvih90s";
|
||||
sha256 = "1vvxhjmzl7vw2i1akfj1xbggwn36270ym7f2ic9xwbaswfw1ap56";
|
||||
};
|
||||
|
||||
doCheck = !isPyPy;
|
||||
|
|
Loading…
Reference in New Issue