My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/retry/default.nix

43 lines
610 B

{ lib
, buildPythonPackage
, fetchPypi
, pbr
, decorator
, py
, mock
, pytest
}:
buildPythonPackage rec {
pname = "retry";
version = "0.9.2";
src = fetchPypi {
inherit pname version;
sha256 = "f8bfa8b99b69c4506d6f5bd3b0aabf77f98cdb17f3c9fc3f5ca820033336fba4";
};
nativeBuildInputs = [
pbr
];
propagatedBuildInputs = [
decorator
py
];
checkInputs = [
mock
pytest
];
checkPhase = ''
pytest
'';
meta = with lib; {
description = "Easy to use retry decorator";
homepage = "https://github.com/invl/retry";
license = licenses.asl20;
};
}