lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #129545 from fabaff/bump-phonenumbers

python3Packages.phonenumbers: 8.12.25 -> 8.12.26

authored by

Fabian Affolter and committed by
GitHub
44188d64 09648a0f

+18 -6
+18 -6
pkgs/development/python-modules/phonenumbers/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi }: 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , pytestCheckHook 5 + }: 2 6 3 7 buildPythonPackage rec { 4 8 pname = "phonenumbers"; 5 - version = "8.12.25"; 9 + version = "8.12.26"; 6 10 7 11 src = fetchPypi { 8 12 inherit pname version; 9 - sha256 = "de4db4e2582f989a9cbae54364a647b24a72a7b0126be50d8356cf02217dc6c9"; 13 + sha256 = "sha256-Zbq269vg7FGWx0YmlJdI21M30jiVqrwe+PXXKEeHmYo="; 10 14 }; 11 15 16 + checkInputs = [ 17 + pytestCheckHook 18 + ]; 19 + 20 + pytestFlagsArray = [ "tests/*.py" ]; 21 + 22 + pythonImportsCheck = [ "phonenumbers" ]; 23 + 12 24 meta = with lib; { 13 - description = "Python version of Google's common library for parsing, formatting, storing and validating international phone numbers"; 14 - homepage = "https://github.com/daviddrysdale/python-phonenumbers"; 15 - license = licenses.asl20; 25 + description = "Python module for handling international phone numbers"; 26 + homepage = "https://github.com/daviddrysdale/python-phonenumbers"; 27 + license = licenses.asl20; 16 28 maintainers = with maintainers; [ fadenb ]; 17 29 }; 18 30 }