mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 06:31:02 +00:00
pythonPackages.openpyxl: 2.3.0 -> 2.3.3
This commit is contained in:
parent
2de0f6e965
commit
c0114b3f63
|
@ -13177,17 +13177,20 @@ in modules // {
|
||||||
};
|
};
|
||||||
|
|
||||||
openpyxl = buildPythonPackage rec {
|
openpyxl = buildPythonPackage rec {
|
||||||
version = "2.3.0";
|
version = "2.3.3";
|
||||||
name = "openpyxl-${version}";
|
name = "openpyxl-${version}";
|
||||||
|
|
||||||
src = pkgs.fetchhg {
|
src = pkgs.fetchurl {
|
||||||
url = "https://bitbucket.org/openpyxl/openpyxl";
|
url = "https://pypi.python.org/packages/source/o/openpyxl/${name}.tar.gz";
|
||||||
rev = "${version}";
|
sha256 = "1zigyvsq45izkhr1h5gisgi0ag5dm6kz09f01c2cgdfav1bl3mlk";
|
||||||
sha256 = "1iisk6rfh9h5xb411kfyzkcab6fdnsx573i0d83wfn4csk4p3p4d";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = with self; [ pytest ];
|
buildInputs = with self; [ pytest ];
|
||||||
propagatedBuildInputs = with self; [ jdcal et_xmlfile ];
|
propagatedBuildInputs = with self; [ jdcal et_xmlfile lxml ];
|
||||||
|
|
||||||
|
# Tests are not included in archive.
|
||||||
|
# https://bitbucket.org/openpyxl/openpyxl/issues/610
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
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";
|
||||||
|
|
Loading…
Reference in a new issue