aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/xmlschema
diff options
context:
space:
mode:
authorKatharina Fey <kookie@spacekookie.de>2019-10-05 12:43:18 +0000
committerKatharina Fey <kookie@spacekookie.de>2019-10-05 12:44:52 +0000
commitcf85056ba64caf3267d43255ef4a1243e9c8ee3b (patch)
tree3051519e9c8275b870aac43f80af875715c9d124 /nixpkgs/pkgs/development/python-modules/xmlschema
parent1148b1d122bc03e9a3665856c9b7bb96bd4e3994 (diff)
parent2436c27541b2f52deea3a4c1691216a02152e729 (diff)
Add 'nixpkgs/' from commit '2436c27541b2f52deea3a4c1691216a02152e729'
git-subtree-dir: nixpkgs git-subtree-mainline: 1148b1d122bc03e9a3665856c9b7bb96bd4e3994 git-subtree-split: 2436c27541b2f52deea3a4c1691216a02152e729
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/xmlschema')
-rw-r--r--nixpkgs/pkgs/development/python-modules/xmlschema/default.nix39
1 files changed, 39 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/xmlschema/default.nix b/nixpkgs/pkgs/development/python-modules/xmlschema/default.nix
new file mode 100644
index 00000000000..c021bde60cd
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/xmlschema/default.nix
@@ -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 ];
+ };
+}