2019-06-03 00:10:49 +01:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, requests, toml, pytest, pytestcov, pytest-mock, pytest_xdist }:
|
2017-07-15 08:00:15 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "stripe";
|
2019-06-03 00:10:49 +01:00
|
|
|
version = "2.29.3";
|
2017-07-15 08:00:15 +01:00
|
|
|
|
|
|
|
# Tests require network connectivity and there's no easy way to disable
|
|
|
|
# them. ~ C.
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-06-03 00:10:49 +01:00
|
|
|
sha256 = "73f9af72ef8125e0d1c713177d006f1cbe95602beb3e10cb0b0a4ae358d1ae86";
|
2017-07-15 08:00:15 +01:00
|
|
|
};
|
|
|
|
|
2019-06-03 00:10:49 +01:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace setup.py --replace "toml>=0.9,<0.10" "toml>=0.9"
|
|
|
|
'';
|
2017-07-15 08:00:15 +01:00
|
|
|
|
2019-06-03 00:10:49 +01:00
|
|
|
propagatedBuildInputs = [ toml requests ];
|
|
|
|
|
|
|
|
checkInputs = [ pytest pytestcov pytest-mock pytest_xdist ];
|
2017-07-15 08:00:15 +01:00
|
|
|
|
2018-02-26 23:41:49 +00:00
|
|
|
meta = with lib; {
|
2017-07-15 08:00:15 +01:00
|
|
|
description = "Stripe Python bindings";
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = https://github.com/stripe/stripe-python;
|
2017-07-15 08:00:15 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|