pythonPackages.execnet: 1.5.0 -> 1.6.0

This commit is contained in:
adisbladis 2019-06-23 14:47:19 +01:00
parent ff6eb60c72
commit d2c84bb3d1
No known key found for this signature in database
GPG key ID: 110BFAD44C6249B7

View file

@ -3,21 +3,21 @@
, buildPythonPackage
, isPyPy
, fetchPypi
, pytest_3
, pytest
, setuptools_scm
, apipkg
}:
buildPythonPackage rec {
pname = "execnet";
version = "1.5.0";
version = "1.6.0";
src = fetchPypi {
inherit pname version;
sha256 = "a7a84d5fa07a089186a329528f127c9d73b9de57f1a1131b82bb5320ee651f6a";
sha256 = "1lvj8z6fikpb5r4rq9n53x3lmsm3vlbr58ikz28x85kly633fakm";
};
checkInputs = [ pytest_3 ];
checkInputs = [ pytest ];
nativeBuildInputs = [ setuptools_scm ];
propagatedBuildInputs = [ apipkg ];
@ -34,9 +34,6 @@ buildPythonPackage rec {
py.test testing
'';
# not yet compatible with pytest 4
doCheck = false;
__darwinAllowLocalNetworking = true;
meta = with stdenv.lib; {