python3Packages.xlsx2csv: 0.7.8 -> 0.8.0
This commit is contained in:
parent
4a9c64e151
commit
41544b2481
1 changed files with 8 additions and 2 deletions
|
@ -1,17 +1,23 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, setuptools
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "xlsx2csv";
|
||||
version = "0.7.8";
|
||||
version = "0.8.0";
|
||||
format = "pyproject";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "c3aaf0c5febd9c5e48488026e7a58af37a67bf3da5e221cc57d371328b3b7dd3";
|
||||
sha256 = "sha256-LCaOUJt3ZspKJPLzYwLpGHBcXq0vzeP0vV8cphUvfiw=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/dilshod/xlsx2csv";
|
||||
description = "Convert xlsx to csv";
|
||||
|
|
Loading…
Reference in a new issue