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

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "09vigknmz15izirfddkmb3a39h1rp2jmc00bnrff12i757n7jjl4";
  };

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

}