pythonPackages.xlwt: 1.0.0 -> 1.1.2
This commit is contained in:
36
pkgs/development/python-modules/xlwt/default.nix
Normal file
36
pkgs/development/python-modules/xlwt/default.nix
Normal file
@@ -0,0 +1,36 @@
|
||||
{ buildPythonPackage
|
||||
, fetchurl
|
||||
, fetchpatch
|
||||
, nose
|
||||
, lib
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "xlwt";
|
||||
name = "${pname}-${version}";
|
||||
version = "1.1.2";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://pypi/${builtins.substring 0 1 pname}/${pname}/${name}.tar.gz";
|
||||
sha256 = "aed648c17731f40f84550dd2a1aaa53569f0cbcaf5610ba895cd2632587b723c";
|
||||
};
|
||||
|
||||
# re.LOCALE was removed in Python 3.6
|
||||
patches = [
|
||||
(fetchpatch {
|
||||
url = "https://github.com/python-excel/xlwt/commit/86564ef26341020316cd8a27c704ef1dc5a6129b.patch";
|
||||
sha256 = "01abxfkmckcxpi6n5wi8ia58fmkzqrxjfjq1mjljygylm8nb3m8i";
|
||||
})
|
||||
];
|
||||
|
||||
buildInputs = [ nose ];
|
||||
checkPhase = ''
|
||||
nosetests -v
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Library to create spreadsheet files compatible with MS";
|
||||
homepage = https://github.com/python-excel/xlwt;
|
||||
license = with lib.licenses; [ bsdOriginal bsd3 lgpl21 ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user