nixpkgs/pkgs/development/python-modules/xmlschema/default.nix
2019-10-14 19:38:37 -07:00

41 lines
1.1 KiB
Nix

{ lib, buildPythonPackage, fetchFromGitHub
, elementpath
, pytest
}:
buildPythonPackage rec {
version = "1.0.15";
pname = "xmlschema";
src = fetchFromGitHub {
owner = "sissaschool";
repo = "xmlschema";
rev = "v${version}";
sha256 = "1s8ggvy2s7513cxcal3r37rn1bhpkxhq3hs5m9pgvmrysxjdz8lb";
};
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 ];
};
}