blob: 966dec934aa2fc52819e72e2ee1e5e69f7ba860f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
{
lib,
fetchPypi,
buildPythonPackage,
poetry-core,
lxml,
docopt-ng,
typing-extensions,
importlib-metadata,
importlib-resources,
pytestCheckHook,
mock,
}:
buildPythonPackage rec {
pname = "rnginline";
version = "1.0.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-JWqzs+OqOynIAWYVgGrZiuiCqObAgGe6rBt0DcP3U6E=";
};
pythonRelaxDeps = [
"docopt-ng"
"importlib-metadata"
"lxml"
];
build-system = [ poetry-core ];
dependencies = [
docopt-ng
lxml
typing-extensions
importlib-metadata
importlib-resources
];
nativeCheckInputs = [
mock
pytestCheckHook
];
pythonImportsCheck = [ "rnginline" ];
meta = with lib; {
description = "Python library and command-line tool for loading multi-file RELAX NG schemas from arbitary URLs, and flattening them into a single RELAX NG schema";
homepage = "https://github.com/h4l/rnginline";
changelog = "https://github.com/h4l/rnginline/blob/${version}/CHANGELOG.md";
license = licenses.asl20;
maintainers = with maintainers; [ lesuisse ];
};
}
|