pythonPackages.xlwt: init at 1.0.0

This commit is contained in:
Frederik Rietdijk 2016-03-12 19:01:51 -05:00
parent c0114b3f63
commit 896f5372be

View File

@ -22247,6 +22247,27 @@ in modules // {
}; };
}; };
xlwt = buildPythonPackage rec {
name = "xlwt-${version}";
version = "1.0.0";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/x/xlwt/${name}.tar.gz";
sha256 = "1y8w5imsicp01gn749qhw6j0grh9y19zz57ribwaknn8xqwjjhxc";
};
buildInputs = with self; [ nose ];
checkPhase = ''
nosetests -v
'';
meta = {
description = "Library to create spreadsheet files compatible with MS";
homepage = https://github.com/python-excel/xlwt;
license = with licenses; [ bsdOriginal bsd3 lgpl21 ];
};
};
youtube-dl = callPackage ../tools/misc/youtube-dl { youtube-dl = callPackage ../tools/misc/youtube-dl {
# Release versions don't need pandoc because the formatted man page # Release versions don't need pandoc because the formatted man page
# is included in the tarball. # is included in the tarball.