1
0
Fork 0

Add package pyexcel-webio

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

View File

@ -1,5 +1,6 @@
self: super: {
anycast_healthchecker = self.python3.pkgs.callPackage ./anycast_healthchecker {};
pyexcel-webio = self.python3.pkgs.callPackage ./pyexcel-webio {};
wetter = self.python3.pkgs.callPackage ./wetter {
inherit (self) python2 pkgconfig libsass;
};

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;
}