vim-vint: Fix
This commit is contained in:
parent
c19c542fda
commit
55be7ae9d5
1 changed files with 3 additions and 3 deletions
|
@ -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.
|
||||||
|
|
Loading…
Reference in a new issue