3891f5b9af
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-xlsx2csv/versions
23 lines
445 B
Nix
23 lines
445 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "xlsx2csv";
|
|
version = "0.7.5";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1f44k1q9jhn2iwabpj663l5wmm7zh6bp5402p659pxf11m8y4c2x";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/bitprophet/alabaster;
|
|
description = "Convert xlsx to csv";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ jb55 ];
|
|
};
|
|
|
|
}
|