Add package pyexcel-xlsx
This commit is contained in:
parent
bbc2046de7
commit
a66af936e5
@ -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;
|
||||
|
17
pkgs/pyexcel-xlsx/default.nix
Normal file
17
pkgs/pyexcel-xlsx/default.nix
Normal 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;
|
||||
}
|
Loading…
Reference in New Issue
Block a user