mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
4122f423ae
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.6-phonenumbers/versions
19 lines
573 B
Nix
19 lines
573 B
Nix
{ stdenv, fetchPypi, buildPythonPackage }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "phonenumbers";
|
|
version = "8.10.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "06nj00qlw2qx5wvwvg32izxq461lyrkif23giixaw2xmzzddzy0l";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|