1
0
Fork 0

Add package pyexcel-xlsx

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

View File

@ -1,6 +1,7 @@
self: super: {
anycast_healthchecker = self.python3.pkgs.callPackage ./anycast_healthchecker {};
flask-excel = self.python3.pkgs.callPackage ./flask-excel {};
pyexcel-xlsx = self.python3.pkgs.callPackage ./pyexcel-xlsx {};
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, 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;
}