steck: add setuptools to nativeBuildInputs
and relax termcolor constraint
This commit is contained in:
parent
b00a475d62
commit
88373b3900
1 changed files with 7 additions and 1 deletions
|
@ -14,10 +14,16 @@ python3Packages.buildPythonApplication rec {
|
|||
};
|
||||
|
||||
postPatch = ''
|
||||
cat setup.py
|
||||
substituteInPlace setup.py \
|
||||
--replace 'click>=7.0,<8.0' 'click'
|
||||
--replace 'click>=7.0,<8.0' 'click' \
|
||||
--replace 'termcolor>=1.1.0,<2.0.0' 'termcolor'
|
||||
'';
|
||||
|
||||
nativeBuildInputs = with python3Packages; [
|
||||
setuptools
|
||||
];
|
||||
|
||||
propagatedBuildInputs = with python3Packages; [
|
||||
pkgs.git
|
||||
appdirs
|
||||
|
|
Loading…
Reference in a new issue