11 buildPythonPackage rec {
14 format = "setuptools";
16 disabled = pythonOlder "3.7";
18 src = fetchFromGitHub {
19 owner = "internetarchive";
21 # Has no git tag, https://github.com/internetarchive/surt/issues/26
22 rev = "6934c321b3e2f66af9c001d882475949f00570c5";
23 hash = "sha256-pSMNpFfq2V0ANWNFPcb1DwPHccbfddo9P4xZ+ghwbz4=";
26 propagatedBuildInputs = [
31 nativeCheckInputs = [ pytestCheckHook ];
33 pythonImportsCheck = [ "surt" ];
36 # Tests want to download Public Suffix List
37 "test_getPublicPrefix"
38 "test_getPublicSuffix"
42 description = "Sort-friendly URI Reordering Transform (SURT) python module";
43 homepage = "https://github.com/internetarchive/surt";
44 license = licenses.agpl3Only;
45 maintainers = with maintainers; [ Luflosi ];