1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-20 16:39:31 +03:00
nixpkgs/pkgs/development/python-modules/agate-excel/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
746 B
Nix
Raw Normal View History

{ lib, fetchPypi, buildPythonPackage
, agate, openpyxl, xlrd, olefile, pytestCheckHook
}:
2017-05-02 21:10:26 -07:00
buildPythonPackage rec {
pname = "agate-excel";
version = "0.2.5";
2017-05-02 21:10:26 -07:00
src = fetchPypi {
inherit pname version;
sha256 = "62315708433108772f7f610ca769996b468a4ead380076dbaf6ffe262831b153";
};
2017-05-02 21:10:26 -07:00
propagatedBuildInputs = [ agate openpyxl xlrd olefile ];
2017-05-02 21:10:26 -07:00
2021-05-10 17:55:56 -04:00
checkInputs = [ pytestCheckHook ];
2017-05-02 21:10:26 -07:00
2021-05-10 17:55:56 -04: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-02 21:10:26 -07:00
}