Unverified Commit e3eb8af1 authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

Merge pull request #232888 from fabaff/cloudflare-bump

python310Packages.cloudflare: 2.11.1 -> 2.11.2
parents c62e6ac4 9df8adbd
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -12,14 +12,14 @@

buildPythonPackage rec {
  pname = "cloudflare";
  version = "2.11.1";
  version = "2.11.2";
  format = "setuptools";

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-VAEgrM9F9M/HjL726RzofJT/Sc8R6WIF/D/gZH5ncBs=";
    hash = "sha256-igOsDHqfjD1cxcHYsTNbjkhsxKR7LNJf5Zw1kkr4a2E=";
  };

  propagatedBuildInputs = [
@@ -41,6 +41,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Python wrapper for the Cloudflare v4 API";
    homepage = "https://github.com/cloudflare/python-cloudflare";
    changelog = "https://github.com/cloudflare/python-cloudflare/blob/${version}/CHANGELOG.md";
    license = licenses.mit;
    maintainers = with maintainers; [ costrouc ];
  };