pythonPackages.execnet: 1.1 -> 1.4.1
Tested on Linux - python 2.7 - python 3.5
This commit is contained in:
parent
e6ced1cb1f
commit
3d09c34184
|
@ -6229,20 +6229,31 @@ in modules // {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
execnet = buildPythonPackage rec {
|
execnet = buildPythonPackage rec {
|
||||||
name = "execnet-1.1";
|
name = "${pname}-${version}";
|
||||||
|
pname = "execnet";
|
||||||
|
version = "1.4.1";
|
||||||
src = pkgs.fetchurl {
|
src = pkgs.fetchurl {
|
||||||
url = "mirror://pypi/e/execnet/${name}.zip";
|
url = "mirror://pypi/e/${pname}/${name}.tar.gz";
|
||||||
sha256 = "fa1d8bd6b6d2282ff4df474b8ac687e1775bff4fc6462b219a5f89d5e9e6908c";
|
sha256 = "1rpk1vyclhg911p3hql0m0nrpq7q7mysxnaaw6vs29cpa6kx8vgn";
|
||||||
};
|
};
|
||||||
|
buildInputs = with self; [ pytest setuptools_scm ];
|
||||||
doCheck = !isPy3k; # failures..
|
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 = {
|
meta = {
|
||||||
description = "Rapid multi-Python deployment";
|
description = "Rapid multi-Python deployment";
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
|
homepage = "http://codespeak.net/execnet";
|
||||||
|
maintainers = with maintainers; [ nand0p ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue