Merge pull request #297110 from fabaff/tldextract-bump

python312Packages.tldextract: 5.1.1 -> 5.1.2

authored by Fabian Affolter and committed by GitHub 28c6e9a4 0f2255c3

+5 -3
+5 -3
pkgs/development/python-modules/tldextract/default.nix
··· 11 , responses 12 , setuptools 13 , setuptools-scm 14 }: 15 16 buildPythonPackage rec { 17 pname = "tldextract"; 18 - version = "5.1.1"; 19 pyproject = true; 20 21 disabled = pythonOlder "3.8"; ··· 24 owner = "john-kurkowski"; 25 repo = "tldextract"; 26 rev = "refs/tags/${version}"; 27 - hash = "sha256-/VBbU8FuB8MEuX6MgGO44+gfqVjl1aHHDHncHY2Jo38="; 28 }; 29 30 nativeBuildInputs = [ ··· 43 pytest-mock 44 pytestCheckHook 45 responses 46 ]; 47 48 pythonImportsCheck = [ ··· 51 52 meta = with lib; { 53 description = "Python module to accurately separate the TLD from the domain of an URL"; 54 - mainProgram = "tldextract"; 55 longDescription = '' 56 tldextract accurately separates the gTLD or ccTLD (generic or country code top-level domain) 57 from the registered domain and subdomains of a URL. ··· 60 changelog = "https://github.com/john-kurkowski/tldextract/blob/${version}/CHANGELOG.md"; 61 license = with licenses; [ bsd3 ]; 62 maintainers = with maintainers; [ fab ]; 63 }; 64 }
··· 11 , responses 12 , setuptools 13 , setuptools-scm 14 + , syrupy 15 }: 16 17 buildPythonPackage rec { 18 pname = "tldextract"; 19 + version = "5.1.2"; 20 pyproject = true; 21 22 disabled = pythonOlder "3.8"; ··· 25 owner = "john-kurkowski"; 26 repo = "tldextract"; 27 rev = "refs/tags/${version}"; 28 + hash = "sha256-rieDDSCit9UcMpCMs2X3+cCS41Wbrp4WWVMzKj/jwEM="; 29 }; 30 31 nativeBuildInputs = [ ··· 44 pytest-mock 45 pytestCheckHook 46 responses 47 + syrupy 48 ]; 49 50 pythonImportsCheck = [ ··· 53 54 meta = with lib; { 55 description = "Python module to accurately separate the TLD from the domain of an URL"; 56 longDescription = '' 57 tldextract accurately separates the gTLD or ccTLD (generic or country code top-level domain) 58 from the registered domain and subdomains of a URL. ··· 61 changelog = "https://github.com/john-kurkowski/tldextract/blob/${version}/CHANGELOG.md"; 62 license = with licenses; [ bsd3 ]; 63 maintainers = with maintainers; [ fab ]; 64 + mainProgram = "tldextract"; 65 }; 66 }