41 lines
1.1 KiB
Nix
41 lines
1.1 KiB
Nix
{ lib, buildPythonPackage, fetchFromGitHub
|
|
, elementpath
|
|
, pytest
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
version = "1.0.17";
|
|
pname = "xmlschema";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sissaschool";
|
|
repo = "xmlschema";
|
|
rev = "v${version}";
|
|
sha256 = "0wbz243q8028ljnh6nq3kxawiwpg5p2bwg1b23ibf7zbrhazcj4k";
|
|
};
|
|
|
|
propagatedBuildInputs = [ elementpath ];
|
|
|
|
checkInputs = [ pytest ];
|
|
|
|
# Ignore broken fixtures, and tests for files which don't exist.
|
|
# For darwin, we need to explicity say we can't reach network
|
|
checkPhase = ''
|
|
substituteInPlace xmlschema/tests/__init__.py \
|
|
--replace "SKIP_REMOTE_TESTS = " "SKIP_REMOTE_TESTS = True #"
|
|
pytest . \
|
|
--ignore=xmlschema/tests/test_factory.py \
|
|
--ignore=xmlschema/tests/test_memory.py \
|
|
--ignore=xmlschema/tests/test_validators.py \
|
|
--ignore=xmlschema/tests/test_schemas.py \
|
|
-k 'not element_tree_import_script'
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "XML Schema validator and data conversion library for Python";
|
|
homepage = "https://github.com/sissaschool/xmlschema";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ jonringer ];
|
|
};
|
|
}
|