linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / pyexcel-xls / default.nix
blob7e09a21e3627b2e033c2f12bc9ddcfcf1b45f3de
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pyexcel-io
5 , xlrd
6 , xlwt
7 , nose
8 , pyexcel
9 , mock
12 buildPythonPackage rec {
13   pname = "pyexcel-xls";
14   version = "0.6.2";
16   src = fetchPypi {
17     inherit pname version;
18     sha256 = "2fbf66e8df88051eaaa9745be433903d18db819ddd3a987c992ead1d68b7feb5";
19   };
21   propagatedBuildInputs = [
22     pyexcel-io
23     xlrd
24     xlwt
25   ];
27   checkInputs = [
28     nose
29     pyexcel
30     mock
31   ];
33   checkPhase = "nosetests";
35   meta = {
36     description = "A wrapper library to read, manipulate and write data in xls using xlrd and xlwt";
37     homepage = "http://docs.pyexcel.org/";
38     license = lib.licenses.bsd3;
39     maintainers = with lib.maintainers; [ jtojnar ];
40   };