16 self = buildPythonPackage rec {
17 pname = "referencing";
21 disabled = pythonOlder "3.8";
23 src = fetchFromGitHub {
24 owner = "python-jsonschema";
27 fetchSubmodules = true;
28 hash = "sha256-Ix0cpdOs7CtersdfW9daF/+BEJaV/na1WRTlYywUJV8=";
47 # Avoid infinite recursion with jsonschema
50 passthru.tests.referencing = self.overridePythonAttrs { doCheck = true; };
52 pythonImportsCheck = [ "referencing" ];
55 description = "Cross-specification JSON referencing";
56 homepage = "https://github.com/python-jsonschema/referencing";
57 changelog = "https://github.com/python-jsonschema/referencing/releases/tag/v${version}";
58 license = licenses.mit;
59 maintainers = with maintainers; [ fab ];