3
0
Fork 0
forked from mirrors/nixpkgs

python3Packages.cmd2: don't require vim for tests

It causes a huge rebuild chain when updating vim, that affects, among
others qemu and ceph.
This commit is contained in:
Martin Weinelt 2022-07-09 13:23:43 +02:00 committed by Matthieu Coudron
parent 906d3fa921
commit 34685a86b0

View file

@ -12,7 +12,6 @@
, pythonOlder
, setuptools-scm
, typing-extensions
, vim
, wcwidth
}:
@ -47,7 +46,12 @@ buildPythonPackage rec {
pytestCheckHook
glibcLocales
pytest-mock
vim
];
disabledTests = [
# don't require vim for tests, it causes lots of rebuilds
"test_find_editor_not_specified"
"test_transcript"
];
postPatch = ''