summary refs log tree commit diff
path: root/pkgs/development/python-modules/agate-excel/default.nix
blob: cb0113c22b3d14800cd70fdb0c291037ef3d8981 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchPypi, buildPythonPackage, agate, openpyxl, xlrd }:

buildPythonPackage rec {
    name = "${pname}-${version}";
    pname = "agate-excel";
    version = "0.2.1";

    src = fetchPypi {
      inherit pname version;
      sha256 = "1d28s01a0a8n8rdrd78w88cqgl3lawzy38h9afwm0iks618i0qn7";
    };

    propagatedBuildInputs = [ agate openpyxl xlrd ];

    meta = with stdenv.lib; {
      description = "Adds read support for excel files to agate";
      homepage    = "https://github.com/wireservice/agate-excel";
      license     = licenses.mit;
      maintainers = with maintainers; [ vrthra ];
    };

}