Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 18 lines 573 B view raw
1{ stdenv, fetchPypi, buildPythonPackage }: 2 3buildPythonPackage rec { 4 pname = "phonenumbers"; 5 version = "8.11.3"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "1rh0860ml00kw5c4b4r31wz5s8cmd5mpxx5slypdgljk4ralyg6p"; 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}