Merge pull request #203551 from r-ryantm/auto-update/python3.10-retrying

python310Packages.retrying: 1.3.3 -> 1.3.4
This commit is contained in:
Mario Rodas 2022-11-30 06:32:14 -05:00 committed by GitHub
commit 4a75d2865e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,26 +2,36 @@
, buildPythonPackage
, fetchPypi
, six
, pythonOlder
}:
buildPythonPackage rec {
pname = "retrying";
version = "1.3.3";
version = "1.3.4";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "0fwp86xv0rvkncjdvy2mwcvbglw4w9k0fva25i7zx8kd19b3kh08";
hash = "sha256-NF2oxXZb2YKx0ZFd65EC/T0fetFr2EqXALhfZNJOjz4=";
};
propagatedBuildInputs = [ six ];
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;
};
pythonImportsCheck = [
"retrying"
];
meta = with lib; {
description = "General-purpose retrying library";
homepage = "https://github.com/rholder/retrying";
license = licenses.asl20;
maintainers = with maintainers; [ ];
};
}