mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
commitizen: fix build after argcomplete update
This commit is contained in:
parent
efb6a85e38
commit
6419b97e49
1 changed files with 4 additions and 1 deletions
|
@ -1,4 +1,5 @@
|
|||
{ buildPythonApplication
|
||||
, charset-normalizer
|
||||
, colorama
|
||||
, commitizen
|
||||
, decli
|
||||
|
@ -41,10 +42,12 @@ buildPythonApplication rec {
|
|||
|
||||
postPatch = ''
|
||||
substituteInPlace pyproject.toml \
|
||||
--replace 'charset-normalizer = "^2.1.0"' 'charset-normalizer = "*"'
|
||||
--replace 'charset-normalizer = "^2.1.0"' 'charset-normalizer = "*"' \
|
||||
--replace 'argcomplete = ">=1.12.1,<2.1"' 'argcomplete = ">=1.12.1"'
|
||||
'';
|
||||
|
||||
propagatedBuildInputs = [
|
||||
charset-normalizer
|
||||
termcolor
|
||||
questionary
|
||||
colorama
|
||||
|
|
Loading…
Reference in a new issue