3
0
Fork 0
forked from mirrors/nixpkgs

pythonPackages.execnet: 1.1 -> 1.4.1

Tested on Linux
- python 2.7
- python 3.5
This commit is contained in:
Fernando J Pando 2016-08-29 10:30:56 -04:00 committed by Frederik Rietdijk
parent e6ced1cb1f
commit 3d09c34184

View file

@ -6229,20 +6229,31 @@ in modules // {
};
};
execnet = buildPythonPackage rec {
name = "execnet-1.1";
name = "${pname}-${version}";
pname = "execnet";
version = "1.4.1";
src = pkgs.fetchurl {
url = "mirror://pypi/e/execnet/${name}.zip";
sha256 = "fa1d8bd6b6d2282ff4df474b8ac687e1775bff4fc6462b219a5f89d5e9e6908c";
url = "mirror://pypi/e/${pname}/${name}.tar.gz";
sha256 = "1rpk1vyclhg911p3hql0m0nrpq7q7mysxnaaw6vs29cpa6kx8vgn";
};
doCheck = !isPy3k; # failures..
buildInputs = with self; [ pytest setuptools_scm ];
propagatedBuildInputs = with self; [ apipkg ];
# remove vbox tests
postPatch = ''
rm -v testing/test_termination.py
rm -v testing/test_channel.py
rm -v testing/test_xspec.py
rm -v testing/test_gateway.py
'';
checkPhase = ''
py.test testing
'';
meta = {
description = "Rapid multi-Python deployment";
license = licenses.gpl2;
homepage = "http://codespeak.net/execnet";
maintainers = with maintainers; [ nand0p ];
};
};