pythonPackages.stripe: add simplejson dependency for python 2
This commit is contained in:
parent
d6e25bfc3b
commit
31a94650e2
pkgs/development/python-modules/stripe
|
@ -1,10 +1,9 @@
|
||||||
{ stdenv, buildPythonPackage, fetchPypi
|
{ lib, buildPythonPackage, fetchPypi, isPy3k
|
||||||
, unittest2, mock, requests }:
|
, unittest2, mock, requests, simplejson }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "stripe";
|
pname = "stripe";
|
||||||
version = "1.79.0";
|
version = "1.79.0";
|
||||||
name = "${pname}-${version}";
|
|
||||||
|
|
||||||
# Tests require network connectivity and there's no easy way to disable
|
# Tests require network connectivity and there's no easy way to disable
|
||||||
# them. ~ C.
|
# them. ~ C.
|
||||||
|
@ -15,11 +14,11 @@ buildPythonPackage rec {
|
||||||
sha256 = "490bb7bfc7d224e483d643171fd860f8a1670e31fd9cef8cb8d9a7c19806d450";
|
sha256 = "490bb7bfc7d224e483d643171fd860f8a1670e31fd9cef8cb8d9a7c19806d450";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ unittest2 mock ];
|
checkInputs = [ unittest2 mock ];
|
||||||
|
|
||||||
propagatedBuildInputs = [ requests ];
|
propagatedBuildInputs = [ requests ] ++ lib.optional (!isPy3k) simplejson;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with lib; {
|
||||||
description = "Stripe Python bindings";
|
description = "Stripe Python bindings";
|
||||||
homepage = https://github.com/stripe/stripe-python;
|
homepage = https://github.com/stripe/stripe-python;
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
|
Loading…
Reference in New Issue