mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-10 23:13:56 +00:00
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:
parent
f272c42ddb
commit
3c001233fd
@ -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 = [
|
||||
|
Loading…
Reference in New Issue
Block a user