2018-02-26 23:41:49 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, isPy3k
|
|
|
|
, unittest2, mock, requests, simplejson }:
|
2017-07-15 07:00:15 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "stripe";
|
2018-11-18 20:13:42 +00:00
|
|
|
version = "2.10.1";
|
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;
|
2018-11-18 20:13:42 +00:00
|
|
|
sha256 = "12dslgxr06ymv1w9lzvlxp1zg0p6zg58l67pdb3v5v24c51rxrg7";
|
2017-07-15 07:00:15 +00:00
|
|
|
};
|
|
|
|
|
2018-02-26 23:41:49 +00:00
|
|
|
checkInputs = [ unittest2 mock ];
|
2017-07-15 07:00:15 +00:00
|
|
|
|
2018-02-26 23:41:49 +00:00
|
|
|
propagatedBuildInputs = [ requests ] ++ lib.optional (!isPy3k) simplejson;
|
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";
|
2017-08-01 20:03:30 +00:00
|
|
|
homepage = https://github.com/stripe/stripe-python;
|
2017-07-15 07:00:15 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|