Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / pyexcel-ods / default.nix
blob519d6b4fc0c65447a4db6d30e1336b45a561441b
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pyexcel-io
5 , odfpy
6 , nose
7 , pyexcel
8 , pyexcel-xls
9 , psutil
12 buildPythonPackage rec {
13   pname = "pyexcel-ods";
14   version = "0.6.0";
16   src = fetchPypi {
17     inherit pname version;
18     sha256 = "f61b56515fd4ccd4687f0a112422f74ce8535247ad2da49db90038d7e3ed397c";
19   };
21   propagatedBuildInputs = [
22     pyexcel-io
23     odfpy
24   ];
26   nativeCheckInputs = [
27     nose
28     pyexcel
29     pyexcel-xls
30     psutil
31   ];
33   checkPhase = "nosetests";
35   meta = {
36     description = "Plug-in to pyexcel providing the capbility to read, manipulate and write data in ods formats using odfpy";
37     homepage = "http://docs.pyexcel.org/";
38     license = lib.licenses.bsd3;
39     maintainers = with lib.maintainers; [ ];
40   };