python311Packages.rnginline: relax docopt-ng constraint

Checking runtime dependencies for rnginline-1.0.0-py3-none-any.whl
  - docopt-ng<0.9.0,>=0.8.1 not satisifeid by version 0.9.0
This commit is contained in:
Martin Weinelt 2023-12-01 00:36:26 +01:00
parent f272c42ddb
commit 3c001233fd
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -2,6 +2,7 @@
, fetchPypi
, buildPythonPackage
, poetry-core
, pythonRelaxDepsHook
, lxml
, docopt-ng
, typing-extensions
@ -14,21 +15,20 @@
buildPythonPackage rec {
pname = "rnginline";
version = "1.0.0";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-JWqzs+OqOynIAWYVgGrZiuiCqObAgGe6rBt0DcP3U6E=";
};
format = "pyproject";
postPatch = ''
substituteInPlace pyproject.toml \
--replace 'importlib-metadata = "^6.6.0"' 'importlib-metadata = "^6.0.0"'
'';
nativeBuildInputs = [
poetry-core
pythonRelaxDepsHook
];
pythonRelaxDeps = [
"docopt-ng"
];
propagatedBuildInputs = [