python27Packages.tenacity: 6.0.0 -> 6.2.0

This commit is contained in:
Jake Waksbaum 2020-05-29 01:27:31 -04:00 committed by Jon
parent 1471767b55
commit bfcead18cd

View file

@ -1,22 +1,23 @@
{ lib, buildPythonPackage, fetchPypi, isPy27 { lib, buildPythonPackage, fetchPypi, isPy27, isPy3k
, pbr, six, futures, monotonic, setuptools_scm , pbr, six, futures, monotonic, typing, setuptools_scm
, pytest, sphinx, tornado , pytest, sphinx, tornado, typeguard
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "tenacity"; pname = "tenacity";
version = "6.0.0"; version = "6.2.0";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "72f397c2bb1887e048726603f3f629ea16f88cb3e61e4ed3c57e98582b8e3571"; sha256 = "16ikf6n6dw1kzncs6vjc4iccl76f9arln59jhiiai27lzbkr1bi9";
}; };
nativeBuildInputs = [ pbr setuptools_scm ]; nativeBuildInputs = [ pbr setuptools_scm ];
propagatedBuildInputs = [ six ] propagatedBuildInputs = [ six ]
++ lib.optionals isPy27 [ futures monotonic ]; ++ lib.optionals isPy27 [ futures monotonic typing ];
checkInputs = [ pytest sphinx tornado ]; checkInputs = [ pytest sphinx tornado ]
++ lib.optionals isPy3k [ typeguard ];
checkPhase = if isPy27 then '' checkPhase = if isPy27 then ''
pytest --ignore='tenacity/tests/test_asyncio.py' pytest --ignore='tenacity/tests/test_asyncio.py'
'' else '' '' else ''