fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
31 lines
667 B
Nix
31 lines
667 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
six,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "riprova";
|
|
version = "0.3.1";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-FgFySbvBjcZU2bjo40/1O7glc6oFWW05jinEOfMWMVI=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ six ];
|
|
|
|
# PyPI archive doesn't have tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "riprova" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/h2non/riprova";
|
|
description = "Small and versatile library to retry failed operations using different backoff strategies";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ mmilata ];
|
|
};
|
|
}
|