ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / xlwt / default.nix
blob7b8e931fb87487e7c254466064458bbcea540c4c
1 { buildPythonPackage
2 , fetchPypi
3 , nose
4 , lib
5 }:
7 buildPythonPackage rec {
8   pname = "xlwt";
9   version = "1.3.0";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "c59912717a9b28f1a3c2a98fd60741014b06b043936dcecbc113eaaada156c88";
14   };
16   checkInputs = [ nose ];
17   checkPhase = ''
18     nosetests -v
19   '';
21   meta = {
22     description = "Library to create spreadsheet files compatible with MS";
23     homepage = "https://github.com/python-excel/xlwt";
24     license = with lib.licenses; [ bsdOriginal bsd3 lgpl21 ];
25   };