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