10 buildPythonPackage rec {
11 pname = "phonenumbers";
15 disabled = pythonOlder "3.7";
18 inherit pname version;
19 hash = "sha256-lL8Yupclu2ho0pRzsT947wHiWFxctWHsAgC+dnbndFI=";
22 build-system = [ setuptools ];
24 nativeCheckInputs = [ pytestCheckHook ];
26 pytestFlagsArray = [ "tests/*.py" ];
28 pythonImportsCheck = [ "phonenumbers" ];
31 description = "Python module for handling international phone numbers";
32 homepage = "https://github.com/daviddrysdale/python-phonenumbers";
33 changelog = "https://github.com/daviddrysdale/python-phonenumbers/blob/v${version}/python/HISTORY.md";
34 license = licenses.asl20;
35 maintainers = with maintainers; [ fadenb ];