nixpkgs/pkgs/development/python-modules/agate-excel/default.nix

30 lines
729 B
Nix
Raw Normal View History

{ lib, fetchPypi, buildPythonPackage
2021-05-10 21:55:56 +00:00
, agate, openpyxl, xlrd, pytestCheckHook
}:
2017-05-03 04:10:26 +00:00
buildPythonPackage rec {
pname = "agate-excel";
version = "0.2.3";
2017-05-03 04:10:26 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "8f255ef2c87c436b7132049e1dd86c8e08bf82d8c773aea86f3069b461a17d52";
};
2017-05-03 04:10:26 +00:00
propagatedBuildInputs = [ agate openpyxl xlrd ];
2017-05-03 04:10:26 +00:00
2021-05-10 21:55:56 +00:00
checkInputs = [ pytestCheckHook ];
2017-05-03 04:10:26 +00:00
2021-05-10 21:55:56 +00:00
disabledTests = [
# See https://github.com/wireservice/agate-excel/issues/45
"test_ambiguous_date"
];
meta = with lib; {
description = "Adds read support for excel files to agate";
homepage = "https://github.com/wireservice/agate-excel";
license = licenses.mit;
maintainers = with maintainers; [ vrthra ];
};
2017-05-03 04:10:26 +00:00
}