forked from mirrors/nixpkgs
Merge pull request #8425 from lihop/add/openpyxl
openpyxl: init at 2.2.4
This commit is contained in:
commit
0fea053461
|
@ -132,6 +132,7 @@
|
||||||
lassulus = "Lassulus <lassulus@gmail.com>";
|
lassulus = "Lassulus <lassulus@gmail.com>";
|
||||||
lethalman = "Luca Bruno <lucabru@src.gnome.org>";
|
lethalman = "Luca Bruno <lucabru@src.gnome.org>";
|
||||||
lhvwb = "Nathaniel Baxter <nathaniel.baxter@gmail.com>";
|
lhvwb = "Nathaniel Baxter <nathaniel.baxter@gmail.com>";
|
||||||
|
lihop = "Leroy Hopson <nixos@leroy.geek.nz>";
|
||||||
linquize = "Linquize <linquize@yahoo.com.hk>";
|
linquize = "Linquize <linquize@yahoo.com.hk>";
|
||||||
linus = "Linus Arver <linusarver@gmail.com>";
|
linus = "Linus Arver <linusarver@gmail.com>";
|
||||||
lnl7 = "Daiderd Jordan <daiderd@gmail.com>";
|
lnl7 = "Daiderd Jordan <daiderd@gmail.com>";
|
||||||
|
|
|
@ -3446,6 +3446,26 @@ let
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
jdcal = buildPythonPackage rec {
|
||||||
|
version = "1.0";
|
||||||
|
name = "jdcal-${version}";
|
||||||
|
|
||||||
|
src = pkgs.fetchFromGitHub {
|
||||||
|
owner = "phn";
|
||||||
|
repo = "jdcal";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0jjgrrylraqzk3n97hay4gj00ky6vlvkfaapfgqlbcxyq30j24vq";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "A module containing functions for converting between Julian dates and calendar dates";
|
||||||
|
homepage = "https://github.com/phn/jdcal";
|
||||||
|
license = licenses.bsd2;
|
||||||
|
maintainers = with maintainers; [ lihop ];
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
jsonwatch = buildPythonPackage rec {
|
jsonwatch = buildPythonPackage rec {
|
||||||
name = "jsonwatch-0.2.0";
|
name = "jsonwatch-0.2.0";
|
||||||
|
|
||||||
|
@ -8079,6 +8099,27 @@ let
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
openpyxl = buildPythonPackage rec {
|
||||||
|
version = "2.2.4";
|
||||||
|
name = "openpyxl-${version}";
|
||||||
|
|
||||||
|
src = pkgs.fetchhg {
|
||||||
|
url = "https://bitbucket.org/openpyxl/openpyxl";
|
||||||
|
rev = "${version}";
|
||||||
|
sha256 = "1g9imbg4sjfyv5sqg2s7h4svhdmbnvq16hvc1a8jpaqq8nc2vjj2";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = with self; [ jdcal ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "A Python library to read/write Excel 2007 xlsx/xlsm files";
|
||||||
|
homepage = "https://openpyxl.readthedocs.org";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ lihop ];
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
# optfunc = buildPythonPackage ( rec {
|
# optfunc = buildPythonPackage ( rec {
|
||||||
# name = "optfunc-git";
|
# name = "optfunc-git";
|
||||||
#
|
#
|
||||||
|
|
Loading…
Reference in a new issue