python310Packages.email-validator 0 -> 1 attrpath: python310Packages.email-validator Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/jr5grr4rzrz2khqk21jm6zfs4gb6hx6f-packages.json.drv building '/nix/store/jr5grr4rzrz2khqk21jm6zfs4gb6hx6f-packages.json.drv'... Going to be running update for following packages: - python3.10-email-validator-1.3.0 Press Enter key to continue... Running update for: - python3.10-email-validator-1.3.0: UPDATING ... - python3.10-email-validator-1.3.0: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/email-validator/default.nix b/pkgs/development/python-modules/email-validator/default.nix index bf106a26dad..b9f1013c46b 100644 --- a/pkgs/development/python-modules/email-validator/default.nix +++ b/pkgs/development/python-modules/email-validator/default.nix @@ -8,13 +8,13 @@ buildPythonPackage rec { pname = "email-validator"; - version = "1.3.0"; + version = "1.3.1"; src = fetchFromGitHub { owner = "JoshData"; repo = "python-${pname}"; rev = "refs/tags/v${version}"; - hash = "sha256-mflUF2ZKYhCiQEoG+fKI+K266dukuSzG9cyg6gwBcTo="; + hash = "sha256-JW6Yrotm3HjUOUtNFxRorkrJKjzuwIXwjpUuMWEyLV0="; }; propagatedBuildInputs = [ No auto update branch exists Old version 1.3.0" not present in staging derivation file with contents: { lib , buildPythonPackage , dnspython , fetchFromGitHub , idna , pytestCheckHook , pythonOlder }: buildPythonPackage rec { pname = "email-validator"; version = "1.3.1"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "JoshData"; repo = "python-${pname}"; rev = "refs/tags/v${version}"; hash = "sha256-JW6Yrotm3HjUOUtNFxRorkrJKjzuwIXwjpUuMWEyLV0="; }; propagatedBuildInputs = [ dnspython idna ]; nativeCheckInputs = [ pytestCheckHook ]; disabledTests = [ # fails with dns.resolver.NoResolverConfiguration due to network sandboxing "test_deliverability_no_records" "test_deliverability_found" "test_deliverability_fails" "test_deliverability_dns_timeout" "test_email_example_reserved_domain" "test_main_single_good_input" "test_main_multi_input" "test_main_input_shim" "test_validate_email__with_caching_resolver" "test_validate_email__with_configured_resolver" ]; pythonImportsCheck = [ "email_validator" ]; meta = with lib; { description = "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 ]; }; }