Merge pull request #310749 from annaleeleaves/rnginline-relax-deps
python312Packages.rnginline: relax deps; unbreak
This commit is contained in:
commit
10fe3323b7
@ -15,23 +15,28 @@
|
||||
buildPythonPackage rec {
|
||||
pname = "rnginline";
|
||||
version = "1.0.0";
|
||||
format = "pyproject";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-JWqzs+OqOynIAWYVgGrZiuiCqObAgGe6rBt0DcP3U6E=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
pythonRelaxDeps = [
|
||||
"docopt-ng"
|
||||
"importlib-metadata"
|
||||
"lxml"
|
||||
];
|
||||
|
||||
build-system = [
|
||||
poetry-core
|
||||
];
|
||||
|
||||
nativeBuildInputs = [
|
||||
pythonRelaxDepsHook
|
||||
];
|
||||
|
||||
pythonRelaxDeps = [
|
||||
"docopt-ng"
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
dependencies = [
|
||||
docopt-ng
|
||||
lxml
|
||||
typing-extensions
|
||||
@ -49,6 +54,7 @@ buildPythonPackage rec {
|
||||
meta = with lib; {
|
||||
description = "A 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 ];
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user