vim-vint: Fix

This commit is contained in:
Silvan Mosberger 2019-03-08 22:07:06 +01:00
parent c19c542fda
commit 55be7ae9d5
No known key found for this signature in database
GPG key ID: 9424360B4B85C9E7

View file

@ -17,10 +17,10 @@ buildPythonApplication rec {
disabled = ! pythonAtLeast "3.5"; disabled = ! pythonAtLeast "3.5";
# Prevent setup.py from adding dependencies in run-time and insisting on specific package versions # Prevent setup.py from adding dependencies in run-time and insisting on specific package versions
patchPhase = '' postPatch = ''
substituteInPlace setup.py --replace "return requires" "return []" substituteInPlace setup.py --replace "return requires" "return []"
''; '';
buildInputs = [ coverage pytest pytestcov ]; checkInputs = [ pytest ];
propagatedBuildInputs = [ ansicolor chardet pyyaml ] ; propagatedBuildInputs = [ ansicolor chardet pyyaml ] ;
# The acceptance tests check for stdout and location of binary files, which fails in nix-build. # The acceptance tests check for stdout and location of binary files, which fails in nix-build.