pythonPackages.execnet: 1.5.0 -> 1.6.0

This commit is contained in:
Mario Rodas 2019-05-24 20:06:00 -05:00 committed by Frederik Rietdijk
parent 3f9e3810f9
commit 738b300066

View File

@ -3,21 +3,21 @@
, buildPythonPackage , buildPythonPackage
, isPyPy , isPyPy
, fetchPypi , fetchPypi
, pytest_3 , pytest
, setuptools_scm , setuptools_scm
, apipkg , apipkg
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "execnet"; pname = "execnet";
version = "1.5.0"; version = "1.6.0";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "a7a84d5fa07a089186a329528f127c9d73b9de57f1a1131b82bb5320ee651f6a"; sha256 = "752a3786f17416d491f833a29217dda3ea4a471fc5269c492eebcee8cc4772d3";
}; };
checkInputs = [ pytest_3 ]; checkInputs = [ pytest ];
nativeBuildInputs = [ setuptools_scm ]; nativeBuildInputs = [ setuptools_scm ];
propagatedBuildInputs = [ apipkg ]; propagatedBuildInputs = [ apipkg ];
@ -34,15 +34,12 @@ buildPythonPackage rec {
py.test testing py.test testing
''; '';
# not yet compatible with pytest 4
doCheck = false;
__darwinAllowLocalNetworking = true; __darwinAllowLocalNetworking = true;
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Rapid multi-Python deployment"; description = "Rapid multi-Python deployment";
license = licenses.gpl2; license = licenses.gpl2;
homepage = "http://codespeak.net/execnet"; homepage = "https://execnet.readthedocs.io/";
maintainers = with maintainers; [ nand0p ]; maintainers = with maintainers; [ nand0p ];
}; };