pysentation: relax click and rich constraints
Checking runtime dependencies for pysentation-1.0.0-py3-none-any.whl - rich==13.4.1 not satisifeid by version 13.5.2 - click==8.1.3 not satisifeid by version 8.1.7
This commit is contained in:
parent
a32f0741b5
commit
735551d0a3
1 changed files with 8 additions and 3 deletions
|
@ -15,9 +15,14 @@ python3.pkgs.buildPythonApplication rec {
|
||||||
hash = "sha256-TwHDXWgGWuQVgatBDc1iympnb6dy4xYThLR5MouEZHA=";
|
hash = "sha256-TwHDXWgGWuQVgatBDc1iympnb6dy4xYThLR5MouEZHA=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = with python3.pkgs; [
|
||||||
python3.pkgs.setuptools
|
setuptools
|
||||||
python3.pkgs.wheel
|
pythonRelaxDepsHook
|
||||||
|
];
|
||||||
|
|
||||||
|
pythonRelaxDeps = [
|
||||||
|
"click"
|
||||||
|
"rich"
|
||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = with python3.pkgs; [
|
propagatedBuildInputs = with python3.pkgs; [
|
||||||
|
|
Loading…
Reference in a new issue