pythonPackages.xmlschema: init at 1.0.13
This commit is contained in:
parent
53e1df4e30
commit
a7279ea9dc
39
pkgs/development/python-modules/xmlschema/default.nix
Normal file
39
pkgs/development/python-modules/xmlschema/default.nix
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
{ lib, buildPythonPackage, fetchFromGitHub
|
||||||
|
, elementpath
|
||||||
|
, pytest
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
version = "1.0.13";
|
||||||
|
pname = "xmlschema";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "sissaschool";
|
||||||
|
repo = "xmlschema";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "182439gqhlxhr9rdi9ak33z4ffy1w9syhykkckkl6mq050c80qdr";
|
||||||
|
};
|
||||||
|
|
||||||
|
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_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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -4949,6 +4949,8 @@ in {
|
|||||||
|
|
||||||
xml2rfc = callPackage ../development/python-modules/xml2rfc { };
|
xml2rfc = callPackage ../development/python-modules/xml2rfc { };
|
||||||
|
|
||||||
|
xmlschema = callPackage ../development/python-modules/xmlschema { };
|
||||||
|
|
||||||
xmltodict = callPackage ../development/python-modules/xmltodict { };
|
xmltodict = callPackage ../development/python-modules/xmltodict { };
|
||||||
|
|
||||||
xarray = callPackage ../development/python-modules/xarray { };
|
xarray = callPackage ../development/python-modules/xarray { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user