Merge pull request #310749 from annaleeleaves/rnginline-relax-deps

python312Packages.rnginline: relax deps; unbreak
This commit is contained in:
Weijia Wang 2024-05-11 10:52:56 +02:00 committed by GitHub
commit 10fe3323b7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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 ];
};