8ac5e011d6
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
22 lines
546 B
Nix
22 lines
546 B
Nix
{ stdenv, buildPythonPackage, fetchPypi }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "validate-email";
|
|
version = "1.3";
|
|
|
|
src = fetchPypi {
|
|
inherit version;
|
|
pname = "validate_email";
|
|
sha256 = "1bxffaf5yz2cph8ki55vdvdypbwkvn2xr1firlcy62vqbzf1jivq";
|
|
};
|
|
|
|
# No tests
|
|
doCheck = false;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "https://github.com/syrusakbary/validate_email";
|
|
description = "Verify if an email address is valid and really exists";
|
|
license = licenses.lgpl3Plus;
|
|
maintainers = [ maintainers.mmahut ];
|
|
};
|
|
}
|