13 buildPythonPackage rec {
14 pname = "jsonschema-specifications";
15 version = "2023.12.1";
18 disabled = pythonOlder "3.8";
21 pname = "jsonschema_specifications";
23 hash = "sha256-SKdnh7PnD17VPxFg0rgfWG5MptFUjF3nCF0WgmdHZMw=";
31 propagatedBuildInputs = [
33 ] ++ lib.optionals (pythonOlder "3.9") [ importlib-resources ];
35 nativeCheckInputs = [ pytestCheckHook ];
37 pythonImportsCheck = [ "jsonschema_specifications" ];
40 description = "Support files exposing JSON from the JSON Schema specifications";
41 homepage = "https://github.com/python-jsonschema/jsonschema-specifications";
42 license = licenses.mit;
43 maintainers = with maintainers; [ SuperSandro2000 ];