Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 29 lines 729 B view raw
1{ lib, fetchPypi, buildPythonPackage 2, agate, openpyxl, xlrd, pytestCheckHook 3}: 4 5buildPythonPackage rec { 6 pname = "agate-excel"; 7 version = "0.2.3"; 8 9 src = fetchPypi { 10 inherit pname version; 11 sha256 = "8f255ef2c87c436b7132049e1dd86c8e08bf82d8c773aea86f3069b461a17d52"; 12 }; 13 14 propagatedBuildInputs = [ agate openpyxl xlrd ]; 15 16 checkInputs = [ pytestCheckHook ]; 17 18 disabledTests = [ 19 # See https://github.com/wireservice/agate-excel/issues/45 20 "test_ambiguous_date" 21 ]; 22 23 meta = with lib; { 24 description = "Adds read support for excel files to agate"; 25 homepage = "https://github.com/wireservice/agate-excel"; 26 license = licenses.mit; 27 maintainers = with maintainers; [ vrthra ]; 28 }; 29}