{ lib, buildPythonPackage, fetchPypi, isPy3k , unittest2, mock, requests, simplejson }: buildPythonPackage rec { pname = "stripe"; version = "1.79.1"; # Tests require network connectivity and there's no easy way to disable # them. ~ C. doCheck = false; src = fetchPypi { inherit pname version; sha256 = "2ec19bf8ad588ec04b36c35f359196fa1991f9ad911b1686ac2a12651a154947"; }; checkInputs = [ unittest2 mock ]; propagatedBuildInputs = [ requests ] ++ lib.optional (!isPy3k) simplejson; meta = with lib; { description = "Stripe Python bindings"; homepage = https://github.com/stripe/stripe-python; license = licenses.mit; }; }