aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/xlsx2csv/default.nix
blob: e1694b9d33e9a1aca9af5467e0692388e2ff27ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "xlsx2csv";
  version = "0.7.6";

  src = fetchPypi {
    inherit pname version;
    sha256 = "ff4121d42d318f31f71b248f37acfc21455a7d897a3c117b578744c89bc34f6c";
  };

  meta = with stdenv.lib; {
    homepage = "https://github.com/bitprophet/alabaster";
    description = "Convert xlsx to csv";
    license = licenses.bsd3;
    maintainers = with maintainers; [ jb55 ];
  };

}