Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv, fetchPypi, buildPythonPackage }: 2 3buildPythonPackage rec { 4 pname = "phonenumbers"; 5 version = "8.12.8"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "3a8b8f7b60ea00b83ca588b5ca57e48d9a3c223aa42f1a3d5fa88566424216c3"; 10 }; 11 12 meta = { 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 = stdenv.lib.licenses.asl20; 16 maintainers = with stdenv.lib.maintainers; [ fadenb ]; 17 }; 18}