9 buildPythonPackage rec {
10 pname = "fastjsonschema";
13 disabled = pythonOlder "3.3";
15 src = fetchFromGitHub {
17 repo = "python-fastjsonschema";
19 fetchSubmodules = true;
20 sha256 = "1hgzafswdw5zqrd8qhdxa43crzfy7lrlifdn90133a0h3psr7qs1";
23 checkInputs = [ pytestCheckHook ];
24 dontUseSetuptoolsCheck = true;
28 # these tests require network access
34 description = "Fast JSON schema validator for Python.";
35 homepage = "https://horejsek.github.io/python-fastjsonschema/";
36 license = licenses.bsd3;
37 maintainers = with maintainers; [ drewrisinger ];