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

19 lines
585 B
Nix
Raw Normal View History

{ stdenv, fetchPypi, buildPythonPackage }:
buildPythonPackage rec {
pname = "phonenumbers";
2018-10-06 11:56:19 +01:00
version = "8.9.15";
src = fetchPypi {
inherit pname version;
2018-10-06 11:56:19 +01:00
sha256 = "8e9664ce0a838c81f4fb3e4d271c76859d26bde57242d64fe1632ab636f5319f";
};
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 ];
};
}