Merge pull request #145764 from fabaff/bump-phonenumbers

python3Packages.phonenumbers: 8.12.36 -> 8.12.37
This commit is contained in:
Jörg Thalheim 2021-11-14 08:14:35 +00:00 committed by GitHub
commit f0c792a92c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,20 +6,25 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "phonenumbers"; pname = "phonenumbers";
version = "8.12.36"; version = "8.12.37";
format = "setuptools";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "e29717fcf86d68082fc6e42ca07e52bff863b6e0b354edd1644ba15c35ef213d"; sha256 = "sha256-28VgmShEoFn1bHwMalh5BOZdlWdAu/t+OViZgLyQVbg=";
}; };
checkInputs = [ checkInputs = [
pytestCheckHook pytestCheckHook
]; ];
pytestFlagsArray = [ "tests/*.py" ]; pytestFlagsArray = [
"tests/*.py"
];
pythonImportsCheck = [ "phonenumbers" ]; pythonImportsCheck = [
"phonenumbers"
];
meta = with lib; { meta = with lib; {
description = "Python module for handling international phone numbers"; description = "Python module for handling international phone numbers";