python311Packages.tldextract 3.6.0 -> 5.0.0 https://repology.org/project/python:tldextract/versions attrpath: python311Packages.tldextract 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/92yzlg4hp61xl8xj78ddj5gkwvc6kmi5-packages.json.drv building '/nix/store/92yzlg4hp61xl8xj78ddj5gkwvc6kmi5-packages.json.drv'... Going to be running update for following packages: - python3.11-tldextract-3.6.0 Press Enter key to continue... Running update for: - python3.11-tldextract-3.6.0: UPDATING ... - python3.11-tldextract-3.6.0: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/tldextract/default.nix b/pkgs/development/python-modules/tldextract/default.nix index 04a6762c8c90..333b117fb0e7 100644 --- a/pkgs/development/python-modules/tldextract/default.nix +++ b/pkgs/development/python-modules/tldextract/default.nix @@ -15,14 +15,14 @@ buildPythonPackage rec { pname = "tldextract"; - version = "3.6.0"; + version = "5.0.1"; format = "pyproject"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-pdi2WDeR2sominWS6892QVL6SWF5g8SZFu6d6Zs2YiI="; + hash = "sha256-rBxdqgJhbpwmCPX7bdkwSdsD0M9Gx/b61G4oUKmE8Bk="; }; nativeBuildInputs = [ No auto update branch exists Old version 3.6.0" not present in master derivation file with contents: { lib , buildPythonPackage , fetchFromGitHub , filelock , idna , pytest-mock , pytestCheckHook , pythonOlder , requests , requests-file , responses , setuptools , setuptools-scm }: buildPythonPackage rec { pname = "tldextract"; version = "5.0.0"; pyproject = true; disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "john-kurkowski"; repo = "tldextract"; rev = "refs/tags/${version}"; hash = "sha256-oZ7L7DGe9HmBo5a489LXjajiSecJNLGHzCF/7DV9au4="; }; SETUPTOOLS_SCM_PRETEND_VERSION = version; nativeBuildInputs = [ setuptools setuptools-scm ]; propagatedBuildInputs = [ filelock idna requests requests-file ]; nativeCheckInputs = [ pytest-mock pytestCheckHook responses ]; pythonImportsCheck = [ "tldextract" ]; meta = with lib; { description = "Python module to accurately separate the TLD from the domain of an URL"; longDescription = '' tldextract accurately separates the gTLD or ccTLD (generic or country code top-level domain) from the registered domain and subdomains of a URL. ''; homepage = "https://github.com/john-kurkowski/tldextract"; changelog = "https://github.com/john-kurkowski/tldextract/blob/${version}/CHANGELOG.md"; license = with licenses; [ bsd3 ]; maintainers = with maintainers; [ fab ]; }; }