pythonPackages.retry_decotrator: refactor move to pyhton-modules

This commit is contained in:
Chris Ostrouchov
2018-10-26 12:00:50 -04:00
committed by Frederik Rietdijk
parent 83416aa102
commit 205dfef617
2 changed files with 22 additions and 11 deletions

View File

@@ -0,0 +1,21 @@
{ stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "retry_decorator";
version = "1.0.0";
src = fetchPypi {
inherit pname version;
sha256 = "086zahyb6yn7ggpc58909c5r5h3jz321i1694l1c28bbpaxnlk88";
};
meta = with stdenv.lib; {
homepage = https://github.com/pnpnpn/retry-decorator;
description = "Retry Decorator for python functions";
license = licenses.mit;
};
}