pythonPackages.retry_decotrator: refactor move to pyhton-modules
This commit is contained in:
committed by
Frederik Rietdijk
parent
83416aa102
commit
205dfef617
21
pkgs/development/python-modules/retry_decorator/default.nix
Normal file
21
pkgs/development/python-modules/retry_decorator/default.nix
Normal 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;
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user