Merge pull request #119121 from fabaff/bump-twilio

python3Packages.twilio: 6.51.1 -> 6.56.0
This commit is contained in:
Sandro 2021-04-11 16:42:05 +02:00 committed by GitHub
commit 3b54c90e75
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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" ];