mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
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
@ -15,9 +15,14 @@ python3.pkgs.buildPythonApplication rec {
|
||||
hash = "sha256-TwHDXWgGWuQVgatBDc1iympnb6dy4xYThLR5MouEZHA=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
python3.pkgs.setuptools
|
||||
python3.pkgs.wheel
|
||||
nativeBuildInputs = with python3.pkgs; [
|
||||
setuptools
|
||||
pythonRelaxDepsHook
|
||||
];
|
||||
|
||||
pythonRelaxDeps = [
|
||||
"click"
|
||||
"rich"
|
||||
];
|
||||
|
||||
propagatedBuildInputs = with python3.pkgs; [
|
||||
|
Loading…
Reference in New Issue
Block a user