1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-26 23:52:33 +00:00

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
This commit is contained in:
R. RyanTM 2019-06-17 19:07:35 -07:00 committed by Mario Rodas
parent 8a222cbd8f
commit e1cbd3e615
No known key found for this signature in database
GPG key ID: 4C4BEFD7B18DC5E8

View file

@ -1,8 +1,8 @@
{ lib, buildPythonPackage, fetchPypi, requests, toml, pytest, pytestcov, pytest-mock, pytest_xdist }:
{ lib, buildPythonPackage, fetchPypi, requests, pytest, pytestcov, pytest-mock, pytest_xdist }:
buildPythonPackage rec {
pname = "stripe";
version = "2.29.3";
version = "2.30.0";
# Tests require network connectivity and there's no easy way to disable
# them. ~ C.
@ -10,14 +10,10 @@ buildPythonPackage rec {
src = fetchPypi {
inherit pname version;
sha256 = "73f9af72ef8125e0d1c713177d006f1cbe95602beb3e10cb0b0a4ae358d1ae86";
sha256 = "de6be07c9e8a350d588278186316f66c72af7036aa5e917d1a924fb875249034";
};
postPatch = ''
substituteInPlace setup.py --replace "toml>=0.9,<0.10" "toml>=0.9"
'';
propagatedBuildInputs = [ toml requests ];
propagatedBuildInputs = [ requests ];
checkInputs = [ pytest pytestcov pytest-mock pytest_xdist ];