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/retrying/default.nix

27 lines
497 B

{ lib
, buildPythonPackage
, fetchPypi
, six
}:
buildPythonPackage rec {
pname = "retrying";
version = "1.3.3";
src = fetchPypi {
inherit pname version;
sha256 = "0fwp86xv0rvkncjdvy2mwcvbglw4w9k0fva25i7zx8kd19b3kh08";
};
propagatedBuildInputs = [ six ];
# doesn't ship tests in tarball
doCheck = false;
meta = with lib; {
homepage = "https://github.com/rholder/retrying";
description = "General-purpose retrying library";
license = licenses.asl20;
};
}