nixpkgs/pkgs/development/python-modules/phonenumbers/default.nix

19 lines
587 B
Nix
Raw Normal View History

{ stdenv, fetchPypi, buildPythonPackage }:
buildPythonPackage rec {
pname = "phonenumbers";
2020-07-31 10:56:43 +02:00
version = "8.12.7";
src = fetchPypi {
inherit pname version;
2020-07-31 10:56:43 +02:00
sha256 = "652c418f8e97c8438f227a524ddf8d7d325c4a47e4924ce865b827c24ec3194d";
};
meta = {
description = "Python version of Google's common library for parsing, formatting, storing and validating international phone numbers";
homepage = "https://github.com/daviddrysdale/python-phonenumbers";
license = stdenv.lib.licenses.asl20;
maintainers = with stdenv.lib.maintainers; [ fadenb ];
};
}