83405b6dd2
GitOrigin-RevId: ac718d02867a84b42522a0ece52d841188208f2c
27 lines
511 B
Nix
27 lines
511 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, setuptools
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "xlsx2csv";
|
|
version = "0.8.1";
|
|
format = "pyproject";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-fs1tK8JCby5DL0/awSIR4ZdtPLtl+QM+Htpl7dogReM=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/dilshod/xlsx2csv";
|
|
description = "Convert xlsx to csv";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ jb55 ];
|
|
};
|
|
}
|