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:
parent
906d3fa921
commit
34685a86b0
|
@ -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 = ''
|
||||
|
|
Loading…
Reference in a new issue