mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
python.pkgs.trollius: use optionals instead of optional, fixes eval for neovim
Eval of neovim was broken at
40851a4d26 (commitcomment-25817374)
.
This commit is contained in:
parent
7a13e5a7df
commit
0f50d5ac19
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ buildPythonPackage rec {
|
|||
|
||||
buildInputs = [ mock ];
|
||||
|
||||
propagatedBuildInputs = lib.optional (isPy27 || isPyPy) [ futures ];
|
||||
propagatedBuildInputs = lib.optionals (isPy27 || isPyPy) [ futures ];
|
||||
|
||||
patches = [
|
||||
./tests.patch
|
||||
|
|
Loading…
Reference in a new issue