Merge pull request #28565 from fadenb/pythonPackages.phonenumbers_8.8.0
pythonPackages.phonenumbers: 8.7.1 -> 8.8.0
This commit is contained in:
commit
b32d669e3d
@ -1,19 +1,19 @@
|
|||||||
{ stdenv, fetchurl, buildPythonPackage }:
|
{ stdenv, fetchPypi, buildPythonPackage }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "phonenumbers";
|
pname = "phonenumbers";
|
||||||
version = "8.7.1";
|
version = "8.8.0";
|
||||||
name = "${pname}-${version}";
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "0j8yzn7fva863v7vrjk0s1d63yswg8hf2hlpvfwzxk9absjyvmgq";
|
||||||
|
};
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Python version of Google's common library for parsing, formatting, storing and validating international phone numbers";
|
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;
|
license = stdenv.lib.licenses.asl20;
|
||||||
maintainers = with stdenv.lib.maintainers; [ fadenb ];
|
maintainers = with stdenv.lib.maintainers; [ fadenb ];
|
||||||
};
|
};
|
||||||
|
|
||||||
src = fetchurl {
|
|
||||||
url = "mirror://pypi/p/phonenumbers/${name}.tar.gz";
|
|
||||||
sha256 = "1zmi2xvh6v4iyfxmrqhj2byfac9xk733w663a7phib7y6wkvqlgr";
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user