pythonPackages.phonenumbers: 8.8.0 -> 8.8.1

This commit is contained in:
Tristan Helmich 2017-09-10 18:08:26 +02:00
parent 259e73d678
commit c3b304e811

View File

@ -2,17 +2,17 @@
buildPythonPackage rec {
pname = "phonenumbers";
version = "8.8.0";
version = "8.8.1";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "0j8yzn7fva863v7vrjk0s1d63yswg8hf2hlpvfwzxk9absjyvmgq";
sha256 = "09f4b307v6wn5zs6spvp5icwad3dz9baf7d14hyvpnxn7cdqj2xy";
};
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";
homepage = https://github.com/daviddrysdale/python-phonenumbers;
license = stdenv.lib.licenses.asl20;
maintainers = with stdenv.lib.maintainers; [ fadenb ];
};