From 64a8c4b05d870a598d17908e4eeac94d724acee6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Jourdois?= Date: Sat, 7 Nov 2015 15:20:49 +0100 Subject: [PATCH 1/3] Add myself as maintainer --- lib/maintainers.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/maintainers.nix b/lib/maintainers.nix index a0b6031ae85..bf054ef7fd5 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -264,6 +264,7 @@ simonvandel = "Simon Vandel Sillesen "; sjagoe = "Simon Jagoe "; sjmackenzie = "Stewart Mackenzie "; + sjourdois = "Stéphane ‘kwisatz’ Jourdois "; skeidel = "Sven Keidel "; smironov = "Sergey Mironov "; spacefrogg = "Michael Raitza "; From 699b477997e5b8e07515dd734018b3927b5a28d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Jourdois?= Date: Sun, 8 Nov 2015 23:27:52 +0100 Subject: [PATCH 2/3] python: et_xmlfile: init at 1.0.1 --- pkgs/top-level/python-packages.nix | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 344e857090d..936e2052995 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -6532,6 +6532,33 @@ let }; }; + et_xmlfile = buildPythonPackage rec { + version = "1.0.1"; + name = "et_xmlfile-${version}"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/e/et_xmlfile/${name}.tar.gz"; + sha256="0nrkhcb6jdrlb6pwkvd4rycw34y3s931hjf409ij9xkjsli9fkb1"; + }; + + meta = { + description = "An implementation of lxml.xmlfile for the standard library"; + longDescription = '' + et_xmlfile is a low memory library for creating large XML files. + + It is based upon the xmlfile module from lxml with the aim of allowing + code to be developed that will work with both libraries. It was developed + initially for the openpyxl project but is now a standalone module. + + The code was written by Elias Rabel as part of the Python Düsseldorf + openpyxl sprint in September 2014. + ''; + homepage = "https://pypi.python.org/pypi/et_xmlfile"; + license = licenses.mit; + maintainers = with maintainers; [ sjourdois ]; + }; + }; + eventlet = buildPythonPackage rec { name = "eventlet-0.17.4"; From e35621c27b04073fe2b6b274625c65d598c21258 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Jourdois?= Date: Sun, 8 Nov 2015 23:28:16 +0100 Subject: [PATCH 3/3] python: openpyxl: 2.2.6 -> 2.3.0 --- pkgs/top-level/python-packages.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 936e2052995..b583f5e7f58 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -10494,23 +10494,23 @@ let }; openpyxl = buildPythonPackage rec { - version = "2.2.6"; + version = "2.3.0"; name = "openpyxl-${version}"; src = pkgs.fetchhg { url = "https://bitbucket.org/openpyxl/openpyxl"; rev = "${version}"; - sha256 = "159cg3njsybjdmwr0458qc5k0m7hbq41h3fczxflc0wnh7ancrdf"; + sha256 = "1iisk6rfh9h5xb411kfyzkcab6fdnsx573i0d83wfn4csk4p3p4d"; }; buildInputs = with self; [ pytest ]; - propagatedBuildInputs = with self; [ jdcal ]; + propagatedBuildInputs = with self; [ jdcal et_xmlfile ]; meta = { 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; - maintainers = with maintainers; [ lihop ]; + maintainers = with maintainers; [ lihop sjourdois ]; platforms = platforms.all; }; };