2019-06-18 02:07:35 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, requests, pytest, pytestcov, pytest-mock, pytest_xdist }:
|
2017-07-15 07:00:15 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "stripe";
|
2020-08-16 17:31:17 +00:00
|
|
|
version = "2.50.0";
|
2017-07-15 07:00:15 +00:00
|
|
|
|
|
|
|
# Tests require network connectivity and there's no easy way to disable
|
|
|
|
# them. ~ C.
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-08-16 17:31:17 +00:00
|
|
|
sha256 = "0c3c02c9b65644502a701d4ff939964799bd1a581fb3f8bf75a3f8675527ef48";
|
2017-07-15 07:00:15 +00:00
|
|
|
};
|
|
|
|
|
2019-06-18 02:07:35 +00:00
|
|
|
propagatedBuildInputs = [ requests ];
|
2019-06-02 23:10:49 +00:00
|
|
|
|
|
|
|
checkInputs = [ pytest pytestcov pytest-mock pytest_xdist ];
|
2017-07-15 07:00:15 +00:00
|
|
|
|
2018-02-26 23:41:49 +00:00
|
|
|
meta = with lib; {
|
2017-07-15 07:00:15 +00:00
|
|
|
description = "Stripe Python bindings";
|
2020-03-09 16:11:26 +00:00
|
|
|
homepage = "https://github.com/stripe/stripe-python";
|
2017-07-15 07:00:15 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|