python: openpyxl: 2.2.6 -> 2.3.0

This commit is contained in:
Stéphane Jourdois 2015-11-08 23:28:16 +01:00
parent 699b477997
commit e35621c27b

View File

@ -10494,23 +10494,23 @@ let
}; };
openpyxl = buildPythonPackage rec { openpyxl = buildPythonPackage rec {
version = "2.2.6"; version = "2.3.0";
name = "openpyxl-${version}"; name = "openpyxl-${version}";
src = pkgs.fetchhg { src = pkgs.fetchhg {
url = "https://bitbucket.org/openpyxl/openpyxl"; url = "https://bitbucket.org/openpyxl/openpyxl";
rev = "${version}"; rev = "${version}";
sha256 = "159cg3njsybjdmwr0458qc5k0m7hbq41h3fczxflc0wnh7ancrdf"; sha256 = "1iisk6rfh9h5xb411kfyzkcab6fdnsx573i0d83wfn4csk4p3p4d";
}; };
buildInputs = with self; [ pytest ]; buildInputs = with self; [ pytest ];
propagatedBuildInputs = with self; [ jdcal ]; propagatedBuildInputs = with self; [ jdcal et_xmlfile ];
meta = { meta = {
description = "A Python library to read/write Excel 2007 xlsx/xlsm files"; description = "A Python library to read/write Excel 2007 xlsx/xlsm files";
homepage = "https://openpyxl.readthedocs.org"; homepage = https://openpyxl.readthedocs.org;
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ lihop ]; maintainers = with maintainers; [ lihop sjourdois ];
platforms = platforms.all; platforms = platforms.all;
}; };
}; };