{ lib , buildPythonPackage , fetchFromGitHub , pythonOlder }: buildPythonPackage rec { pname = "hstspreload"; version = "2022.11.1"; format = "setuptools"; disabled = pythonOlder "3.6"; src = fetchFromGitHub { owner = "sethmlarson"; repo = pname; rev = version; sha256 = "sha256-4GirKCe84sYV+28ODPipixV3cl7wIV/NOd+iM0Cec4I="; }; # Tests require network connection doCheck = false; pythonImportsCheck = [ "hstspreload" ]; meta = with lib; { description = "Chromium HSTS Preload list as a Python package and updated daily"; homepage = "https://github.com/sethmlarson/hstspreload"; license = licenses.bsd3; maintainers = with maintainers; [ costrouc SuperSandro2000 ]; }; }