python3Packages.agate-excel: fix build
This commit is contained in:
parent
f741360901
commit
b590df0f18
@ -1,5 +1,5 @@
|
|||||||
{ lib, fetchPypi, buildPythonPackage
|
{ lib, fetchPypi, buildPythonPackage
|
||||||
, agate, openpyxl, xlrd, nose
|
, agate, openpyxl, xlrd, pytestCheckHook
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
@ -13,11 +13,12 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
propagatedBuildInputs = [ agate openpyxl xlrd ];
|
propagatedBuildInputs = [ agate openpyxl xlrd ];
|
||||||
|
|
||||||
checkInputs = [ nose ];
|
checkInputs = [ pytestCheckHook ];
|
||||||
|
|
||||||
checkPhase = ''
|
disabledTests = [
|
||||||
nosetests
|
# See https://github.com/wireservice/agate-excel/issues/45
|
||||||
'';
|
"test_ambiguous_date"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Adds read support for excel files to agate";
|
description = "Adds read support for excel files to agate";
|
||||||
|
Loading…
Reference in New Issue
Block a user