1{ lib
2, buildPythonPackage
3, fetchPypi
4, setuptools
5}:
6
7buildPythonPackage rec {
8 pname = "xlsx2csv";
9 version = "0.8.0";
10 format = "pyproject";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "sha256-LCaOUJt3ZspKJPLzYwLpGHBcXq0vzeP0vV8cphUvfiw=";
15 };
16
17 nativeBuildInputs = [
18 setuptools
19 ];
20
21 meta = with lib; {
22 homepage = "https://github.com/dilshod/xlsx2csv";
23 description = "Convert xlsx to csv";
24 license = licenses.bsd3;
25 maintainers = with maintainers; [ jb55 ];
26 };
27}