10 buildPythonPackage rec {
13 format = "setuptools";
15 disabled = pythonOlder "3.7";
17 src = fetchFromGitHub {
18 owner = "sissaschool";
20 rev = "refs/tags/v${version}";
21 hash = "sha256-z6VgLRDp5PHaYstdV30gt6xGVd4uifz4LkYQ2z3ayk4=";
24 propagatedBuildInputs = [
33 # Ignore broken fixtures, and tests for files which don't exist.
34 # For darwin, we need to explicity say we can't reach network
37 "element_tree_import_script"
41 "tests/test_schemas.py"
42 "tests/test_memory.py"
43 "tests/test_validation.py"
46 pythonImportsCheck = [
51 description = "XML Schema validator and data conversion library for Python";
52 homepage = "https://github.com/sissaschool/xmlschema";
53 license = licenses.mit;
54 maintainers = with maintainers; [ jonringer ];