python3Packages.phonenumbers: 8.12.36 -> 8.12.37

This commit is contained in:
Fabian Affolter 2021-11-13 16:39:57 +01:00
parent e29d818477
commit 8d10569f79

View File

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