python312Packages.email-validator 2.1.0 -> 2.1.1 https://github.com/JoshData/python-email-validator/releases attrpath: python312Packages.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 [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/nz10jqakpp23ydpzbq2n1dmqyas2jl4b-packages.json.drv building '/nix/store/nz10jqakpp23ydpzbq2n1dmqyas2jl4b-packages.json.drv'... Going to be running update for following packages: - python3.12-email-validator-2.1.0 Press Enter key to continue... Running update for: - python3.12-email-validator-2.1.0: UPDATING ... - python3.12-email-validator-2.1.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/email-validator/default.nix b/pkgs/development/python-modules/email-validator/default.nix index 0f176e45fd07..257c78c8e19d 100644 --- a/pkgs/development/python-modules/email-validator/default.nix +++ b/pkgs/development/python-modules/email-validator/default.nix @@ -9,7 +9,7 @@ buildPythonPackage rec { pname = "email-validator"; - version = "2.1.0"; + version = "2.1.1"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -18,7 +18,7 @@ buildPythonPackage rec { owner = "JoshData"; repo = "python-${pname}"; rev = "refs/tags/v${version}"; - hash = "sha256-58DuQslADM7glrnlSSP6TtIDTlwuS0/GK8+izatqDxI="; + hash = "sha256-btHISb/Z6l9wV6R/1iGPx8H0RMgtvuUcI/ZBI0H8x+U="; }; propagatedBuildInputs = [ No auto update branch exists Old version 2.1.0" not present in staging derivation file with contents: { lib , buildPythonPackage , dnspython , fetchurl , idna , pytestCheckHook , pythonOlder }: buildPythonPackage rec { pname = "email-validator"; version = "2.1.1"; format = "setuptools"; disabled = pythonOlder "3.8"; # Upstream has a bad habit of re-issuing release tarballs and # force-pushing over public release tags. # Archive new release tarballs at: https://web.archive.org/save src = fetchurl { url = "http://web.archive.org/web/20240306093519/https://github.com/JoshData/python-email-validator/archive/refs/tags/v${version}.tar.gz"; hash = "sha256-BR/a+YJjvpr6UtzVC2vFkXCGVLa1mLR+SkCAIFpxf8E="; }; propagatedBuildInputs = [ dnspython idna ]; nativeCheckInputs = [ pytestCheckHook ]; disabledTestPaths = [ # dns.resolver.NoResolverConfiguration: cannot open /etc/resolv.conf "tests/test_deliverability.py" "tests/test_main.py" ]; 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 ]; }; }