2019-06-16 20:59:06 +01:00
|
|
|
{ lib, fetchPypi, buildPythonPackage
|
2021-09-11 04:08:43 +01:00
|
|
|
, agate, openpyxl, xlrd, olefile, pytestCheckHook
|
2019-03-16 09:20:44 +00:00
|
|
|
}:
|
2017-05-03 05:10:26 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2019-03-16 09:20:44 +00:00
|
|
|
pname = "agate-excel";
|
2021-08-26 20:32:29 +01:00
|
|
|
version = "0.2.5";
|
2017-05-03 05:10:26 +01:00
|
|
|
|
2019-03-16 09:20:44 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-08-26 20:32:29 +01:00
|
|
|
sha256 = "62315708433108772f7f610ca769996b468a4ead380076dbaf6ffe262831b153";
|
2019-03-16 09:20:44 +00:00
|
|
|
};
|
2017-05-03 05:10:26 +01:00
|
|
|
|
2021-09-11 04:08:43 +01:00
|
|
|
propagatedBuildInputs = [ agate openpyxl xlrd olefile ];
|
2017-05-03 05:10:26 +01:00
|
|
|
|
2021-05-10 22:55:56 +01:00
|
|
|
checkInputs = [ pytestCheckHook ];
|
2017-05-03 05:10:26 +01:00
|
|
|
|
2021-05-10 22:55:56 +01:00
|
|
|
disabledTests = [
|
|
|
|
# See https://github.com/wireservice/agate-excel/issues/45
|
|
|
|
"test_ambiguous_date"
|
|
|
|
];
|
2019-03-16 09:20:44 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Adds read support for excel files to agate";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/wireservice/agate-excel";
|
2019-03-16 09:20:44 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ vrthra ];
|
|
|
|
};
|
2017-05-03 05:10:26 +01:00
|
|
|
}
|