34 lines
924 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, isPy27, isPy3k
, pbr, six, futures ? null, monotonic ? null, typing ? null, setuptools_scm
, pytest, sphinx, tornado, typeguard
2019-01-10 17:14:54 +00:00
}:
buildPythonPackage rec {
pname = "tenacity";
version = "7.0.0";
2019-01-10 17:14:54 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "5bd16ef5d3b985647fe28dfa6f695d343aa26479a04e8792b9d3c8f49e361ae1";
2019-01-10 17:14:54 +00:00
};
2019-10-24 08:47:50 +02:00
nativeBuildInputs = [ pbr setuptools_scm ];
2019-01-10 17:14:54 +00:00
propagatedBuildInputs = [ six ]
++ lib.optionals isPy27 [ futures monotonic typing ];
2019-01-10 17:14:54 +00:00
checkInputs = [ pytest sphinx tornado ]
++ lib.optionals isPy3k [ typeguard ];
2019-10-24 08:47:50 +02:00
checkPhase = if isPy27 then ''
2019-01-10 17:14:54 +00:00
pytest --ignore='tenacity/tests/test_asyncio.py'
'' else ''
pytest
'';
meta = with lib; {
homepage = "https://github.com/jd/tenacity";
2019-01-10 17:14:54 +00:00
description = "Retrying library for Python";
license = licenses.asl20;
maintainers = with maintainers; [ jakewaksbaum ];
};
}