Merge pull request #313363 from r-ryantm/auto-update/python311Packages.stripe

python311Packages.stripe: 9.6.0 -> 9.7.0
This commit is contained in:
OTABI Tomoya 2024-05-26 14:25:25 +09:00 committed by GitHub
commit e7dc498fba
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -10,19 +10,19 @@
buildPythonPackage rec {
pname = "stripe";
version = "9.6.0";
version = "9.7.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-kwXYSc6nFdxZxeOdAYkUdbguEO252V7h2BiUV+XeeS8=";
hash = "sha256-r2lHI795aM6hipVmQdzveG7B9y3oAicY+j7194aL1DA=";
};
nativeBuildInputs = [ setuptools ];
build-system = [ setuptools ];
propagatedBuildInputs = [
dependencies = [
requests
typing-extensions
];