1
0

Add package pyexcel-webio

This commit is contained in:
2021-01-28 16:26:10 +01:00
parent 901cb8c811
commit c79ce0eec1
2 changed files with 18 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
{ buildPythonPackage, fetchPypi, pyexcel }:
buildPythonPackage rec {
pname = "pyexcel-webio";
version = "0.1.4";
src = fetchPypi {
inherit pname version;
sha256 = "039538f1b35351f1632891dde29ef4d7fba744e217678ebb5a501336e28ca265";
};
propagatedBuildInputs = [
pyexcel
];
doCheck = false;
}