Merge pull request #30572 from flokli/twilio

twilio: init at 6.8.0
This commit is contained in:
Jörg Thalheim 2017-10-19 11:29:20 +01:00 committed by GitHub
commit 6f9c76662b
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ stdenv, buildPythonPackage, fetchFromGitHub
, pyjwt, pysocks, pytz, requests, six, nose, mock }:
buildPythonPackage rec {
pname = "twilio";
version = "6.8.0";
name = "${pname}-${version}";
# tests not included in PyPi, so fetch from github instead
src = fetchFromGitHub {
owner = "twilio";
repo = "twilio-python";
rev = version;
sha256 = "1vi3m6kvbmv643jbz95q59rcn871y0sss48kw2nqziyr5iswfx8c";
};
buildInputs = [ nose mock ];
propagatedBuildInputs = [ pyjwt pysocks pytz six requests ];
meta = with stdenv.lib; {
description = "Twilio API client and TwiML generator";
homepage = https://github.com/twilio/twilio-python/;
license = licenses.mit;
maintainers = with maintainers; [ flokli ];
};
}

View file

@ -26524,6 +26524,8 @@ EOF
stripe = callPackage ../development/python-modules/stripe { };
twilio = callPackage ../development/python-modules/twilio { };
uranium = callPackage ../development/python-modules/uranium { };
vine = callPackage ../development/python-modules/vine { };