python312Packages.publicsuffixlist: refactor

This commit is contained in:
Fabian Affolter 2024-03-30 16:38:55 +01:00
parent 1ee02d4fc5
commit c75e9c601d

View File

@ -20,7 +20,7 @@ buildPythonPackage rec {
hash = "sha256-XArawQzC9J5ShtgCG02qf8RRxNTKJMn8aiclG+4CUKY="; hash = "sha256-XArawQzC9J5ShtgCG02qf8RRxNTKJMn8aiclG+4CUKY=";
}; };
nativeBuildInputs = [ build-system = [
setuptools setuptools
]; ];
@ -47,9 +47,9 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "Public Suffix List parser implementation"; description = "Public Suffix List parser implementation";
mainProgram = "publicsuffixlist-download";
homepage = "https://github.com/ko-zu/psl"; homepage = "https://github.com/ko-zu/psl";
license = licenses.mpl20; license = licenses.mpl20;
maintainers = with maintainers; [ fab ]; maintainers = with maintainers; [ fab ];
mainProgram = "publicsuffixlist-download";
}; };
} }