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