blob: 5d4b37342f6ffff00e07090a180bc15b291215e7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
{ lib
, buildPythonPackage
, fetchPypi
, setuptools
, setuptools-scm
, wheel
}:
buildPythonPackage rec {
pname = "xlsx2csv";
version = "0.8.2";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-zdJyyC+LMvHO52rq74ey7jVJZh/d+Q9+zyMQlnoW/IQ=";
};
nativeBuildInputs = [
setuptools
setuptools-scm
wheel
];
meta = with lib; {
homepage = "https://github.com/dilshod/xlsx2csv";
description = "Convert xlsx to csv";
mainProgram = "xlsx2csv";
license = licenses.bsd3;
maintainers = with maintainers; [ jb55 ];
};
}
|