Commit 8552e1ad authored by Martin Weinelt's avatar Martin Weinelt
Browse files

python3Packages.stripe: 12.5.1 -> 14.2.0

https://github.com/stripe/stripe-python/blob/v14.2.0/CHANGELOG.md

This commit was automatically generated using update-python-libraries.
parent 3f22ec70
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -3,21 +3,21 @@
  buildPythonPackage,
  fetchPypi,
  requests,
  setuptools,
  flit-core,
  typing-extensions,
}:

buildPythonPackage rec {
  pname = "stripe";
  version = "12.5.1";
  version = "14.2.0";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-VAfQksNVwxOT52fS3LLVqMOYDKqaBzrLMtDMs8AbBLU=";
    hash = "sha256-nHB8sFA+F5wtnxhzHpTxMzcFtc2dyq5pLbCZla0o1BE=";
  };

  build-system = [ setuptools ];
  build-system = [ flit-core ];

  dependencies = [
    requests