Merge pull request #160422 from r-ryantm/auto-update/python3.10-stripe

python310Packages.stripe: 2.65.0 -> 2.66.0
This commit is contained in:
Fabian Affolter 2022-02-17 09:46:03 +01:00 committed by GitHub
commit b2de46276d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,20 +1,32 @@
{ lib, buildPythonPackage, fetchPypi, requests }:
{ lib
, buildPythonPackage
, fetchPypi
, requests
, pythonOlder
}:
buildPythonPackage rec {
pname = "stripe";
version = "2.65.0";
version = "2.66.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "2e55d4d7262085de9cef2228f14581925c35350ba58a332352b1ec9e19a7b7a6";
hash = "sha256-d8YDIjD3cUsaG0WQdPCMYNYMIpucO+rDcnGQY+PRQJw=";
};
propagatedBuildInputs = [ requests ];
propagatedBuildInputs = [
requests
];
# Tests require network connectivity and there's no easy way to disable them
doCheck = false;
pythonImportsCheck = [ "stripe" ];
pythonImportsCheck = [
"stripe"
];
meta = with lib; {
description = "Stripe Python bindings";