Merge pull request #36934 from Ma27/fix-diffcover

pythonPackages.diff_cover: fix build
This commit is contained in:
Robert Schütz 2018-03-15 12:56:36 +01:00 committed by GitHub
commit 95836ab034
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,6 @@
{ stdenv, buildPythonPackage, fetchPypi, jinja2, jinja2_pluralize, pygments,
six, inflect, mock, nose, coverage, pycodestyle, flake8, pyflakes, git,
pylint, pydocstyle, fetchpatch }:
pylint, pydocstyle, fetchpatch, glibcLocales }:
buildPythonPackage rec {
pname = "diff_cover";
@ -25,7 +25,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [ jinja2 jinja2_pluralize pygments six inflect ];
checkInputs = [ mock nose coverage pycodestyle flake8 pyflakes pylint pydocstyle git ];
checkInputs = [ mock nose coverage pycodestyle flake8 pyflakes pylint pydocstyle git glibcLocales ];
meta = with stdenv.lib; {
description = "Automatically find diff lines that need test coverage";