nixpkgs-suyu/pkgs/development/python-modules/xmlschema/default.nix
2021-08-23 08:12:03 +00:00

39 lines
1 KiB
Nix

{ lib, buildPythonPackage, fetchFromGitHub
, elementpath
, lxml
, pytest
}:
buildPythonPackage rec {
version = "1.7.0";
pname = "xmlschema";
src = fetchFromGitHub {
owner = "sissaschool";
repo = "xmlschema";
rev = "v${version}";
sha256 = "0vf0gj1sbv9f7gjm3zbyl0b8pkrn00yzx57ddff0h2kazv8jlpwi";
};
propagatedBuildInputs = [ elementpath ];
checkInputs = [ lxml 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 = ''
pytest tests \
--ignore=tests/test_factory.py \
--ignore=tests/test_schemas.py \
--ignore=tests/test_memory.py \
--ignore=tests/test_validation.py \
-k 'not element_tree_import_script and not export_remote'
'';
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 ];
};
}