Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python37Packages.stripe: 2.29.3 -> 2.30.0

Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-stripe/versions

authored by R. RyanTM and committed by Mario Rodas e1cbd3e6 8a222cbd

+4 -8
+4 -8
pkgs/development/python-modules/stripe/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, requests, toml, pytest, pytestcov, pytest-mock, pytest_xdist }: 1 + { lib, buildPythonPackage, fetchPypi, requests, pytest, pytestcov, pytest-mock, pytest_xdist }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "stripe"; 5 - version = "2.29.3"; 5 + version = "2.30.0"; 6 6 7 7 # Tests require network connectivity and there's no easy way to disable 8 8 # them. ~ C. ··· 10 10 11 11 src = fetchPypi { 12 12 inherit pname version; 13 - sha256 = "73f9af72ef8125e0d1c713177d006f1cbe95602beb3e10cb0b0a4ae358d1ae86"; 13 + sha256 = "de6be07c9e8a350d588278186316f66c72af7036aa5e917d1a924fb875249034"; 14 14 }; 15 15 16 - postPatch = '' 17 - substituteInPlace setup.py --replace "toml>=0.9,<0.10" "toml>=0.9" 18 - ''; 19 - 20 - propagatedBuildInputs = [ toml requests ]; 16 + propagatedBuildInputs = [ requests ]; 21 17 22 18 checkInputs = [ pytest pytestcov pytest-mock pytest_xdist ]; 23 19