pythonPackages.xlsx2csv: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov
2018-10-29 15:05:19 -04:00
parent 82878eaade
commit 6ca3651766
2 changed files with 23 additions and 14 deletions

View File

@@ -0,0 +1,22 @@
{ stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "xlsx2csv";
version = "0.7.2";
src = fetchPypi {
inherit pname version;
sha256 = "7c6c8fa6c2774224d03a6a96049e116822484dccfa3634893397212ebcd23866";
};
meta = with stdenv.lib; {
homepage = https://github.com/bitprophet/alabaster;
description = "Convert xlsx to csv";
license = licenses.bsd3;
maintainers = with maintainers; [ jb55 ];
};
}