python310Packages.email-validator: 1.2.1 -> 1.3.0

This commit is contained in:
Anthony Roussel 2023-01-06 03:22:58 +01:00
parent 752d1605d1
commit c0c6e9252c
No known key found for this signature in database
GPG key ID: 9DC4987B1A55E75E

View file

@ -8,13 +8,13 @@
buildPythonPackage rec {
pname = "email-validator";
version = "1.2.1";
version = "1.3.0";
src = fetchFromGitHub {
owner = "JoshData";
repo = "python-${pname}";
rev = "refs/tags/v${version}";
sha256 = "sha256-Avsqaev3LMoymU06y+u8MMv38ZI2cWk5tc/MkO+9oyA=";
hash = "sha256-mflUF2ZKYhCiQEoG+fKI+K266dukuSzG9cyg6gwBcTo=";
};
propagatedBuildInputs = [
@ -47,6 +47,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "A robust email syntax and deliverability validation library";
homepage = "https://github.com/JoshData/python-email-validator";
changelog = "https://github.com/JoshData/python-email-validator/releases/tag/v${version}";
license = licenses.cc0;
maintainers = with maintainers; [ siddharthist ];
};