Unverified Commit 70de3e18 authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

Merge pull request #214479 from r-ryantm/auto-update/python310Packages.stripe

python310Packages.stripe: 5.0.0 -> 5.1.0
parents e80b58ca aa035e94
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -7,14 +7,14 @@

buildPythonPackage rec {
  pname = "stripe";
  version = "5.0.0";
  version = "5.1.0";
  format = "setuptools";

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-vcjF7o5rU8R2e75yB1LO24r5HbRq2W5RHt0Pt0lkrF0=";
    hash = "sha256-8tkdjj2qTzhUA8bNu2s49UgrLegrboNKMAs2NSOA5o4=";
  };

  propagatedBuildInputs = [
@@ -31,6 +31,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Stripe Python bindings";
    homepage = "https://github.com/stripe/stripe-python";
    changelog = "https://github.com/stripe/stripe-python/blob/v${version}/CHANGELOG.md";
    license = licenses.mit;
    maintainers = with maintainers; [ ];
  };