ced21f5e1a
The `buildPython*` function computes name from `pname` and `version`. This change removes `name` attribute from all expressions in `pkgs/development/python-modules`. While at it, some other minor changes were made as well, such as replacing `fetchurl` calls with `fetchPypi`.
32 lines
717 B
Nix
32 lines
717 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pytest
|
|
, jdcal
|
|
, et_xmlfile
|
|
, lxml
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "openpyxl";
|
|
version = "2.5.4";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "9239b74faf175dc4276a5fc277655fc53c2f704ded39e680d35e6a39e1913f69";
|
|
};
|
|
|
|
checkInputs = [ pytest ];
|
|
propagatedBuildInputs = [ jdcal et_xmlfile lxml ];
|
|
|
|
# Tests are not included in archive.
|
|
# https://bitbucket.org/openpyxl/openpyxl/issues/610
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "A Python library to read/write Excel 2007 xlsx/xlsm files";
|
|
homepage = https://openpyxl.readthedocs.org;
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ lihop sjourdois ];
|
|
};
|
|
} |