nixpkgs/pkgs/development/python-modules/phonenumbers/default.nix
2019-04-24 18:43:26 +02:00

19 lines
586 B
Nix

{ stdenv, fetchPypi, buildPythonPackage }:
buildPythonPackage rec {
pname = "phonenumbers";
version = "8.10.10";
src = fetchPypi {
inherit pname version;
sha256 = "dabc8cfcff96446b0787ea337739ea286ec3949ec27a4790a9b4587817da5c5f";
};
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 ];
};
}