python3Packages.twilio: 6.51.1 -> 6.56.0

This commit is contained in:
Fabian Affolter 2021-04-11 12:24:00 +02:00
parent 089908b9db
commit 2df1ab3378
1 changed files with 14 additions and 5 deletions

View File

@ -12,19 +12,28 @@
buildPythonPackage rec {
pname = "twilio";
version = "6.51.1";
version = "6.56.0";
# tests not included in PyPi, so fetch from github instead
src = fetchFromGitHub {
owner = "twilio";
repo = "twilio-python";
rev = version;
sha256 = "sha256-OHtmUFm/9GkpIzz0DdSdlHyBFRIgu8GxQ4S4VMJik9o=";
sha256 = "sha256-vVJuuPxVyOqnplPYrjCjIm5IyIFZvsCMoDLrrHpHK+4=";
};
buildInputs = [ nose mock ];
propagatedBuildInputs = [
pyjwt
pysocks
pytz
requests
six
];
propagatedBuildInputs = [ pyjwt pysocks pytz six requests ];
checkInputs = [
mock
nose
];
pythonImportsCheck = [ "twilio" ];