c7f94ff3ce
GitOrigin-RevId: b85ed9dcbf187b909ef7964774f8847d554fab3b
29 lines
635 B
Nix
29 lines
635 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, six
|
|
}:
|
|
|
|
buildPythonPackage rec{
|
|
pname = "riprova";
|
|
version = "0.3.1";
|
|
|
|
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 ];
|
|
};
|
|
}
|