python312Packages.validate-email: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-16 11:15:06 +02:00
parent faaddd1641
commit 13b336328d
1 changed files with 8 additions and 11 deletions

View File

@ -1,8 +1,9 @@
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, setuptools
{
lib,
buildPythonPackage,
fetchPypi,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
@ -18,16 +19,12 @@ buildPythonPackage rec {
hash = "sha256-eEcZ3F94C+MZzdGF3IXdk6/r2267lDgRvEx8X5xyrq8=";
};
build-system = [
setuptools
];
build-system = [ setuptools ];
# No tests
doCheck = false;
pythonImportsCheck = [
"validate_email"
];
pythonImportsCheck = [ "validate_email" ];
meta = with lib; {
description = "Verify if an email address is valid and really exists";