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

19 lines
584 B
Nix
Raw Normal View History

{ stdenv, fetchPypi, buildPythonPackage }:
buildPythonPackage rec {
pname = "phonenumbers";
2018-06-21 05:37:17 +00:00
version = "8.9.8";
src = fetchPypi {
inherit pname version;
2018-06-21 05:37:17 +00:00
sha256 = "7813a9d45f0d1386a23552072af20a3ef34fa34f76eeb9033743ff083f9551e1";
};
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 ];
};
}