1
0

Add package pyexcel-xlsx

This commit is contained in:
2021-01-28 16:40:05 +01:00
parent bbc2046de7
commit a66af936e5
2 changed files with 18 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
{ buildPythonPackage, fetchPypi, openpyxl, pyexcel-io }:
buildPythonPackage rec {
pname = "pyexcel-xlsx";
version = "0.6.0";
src = fetchPypi {
inherit pname version;
sha256 = "55754f764252461aca6871db203f4bd1370ec877828e305e6be1de5f9aa6a79d";
};
propagatedBuildInputs = [
openpyxl pyexcel-io
];
doCheck = false;
}