nixpkgs/pkgs/development/python-modules/agate-excel/default.nix

23 lines
629 B
Nix
Raw Normal View History

2017-05-03 04:10:26 +00:00
{ stdenv, fetchPypi, buildPythonPackage, agate, openpyxl, xlrd }:
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "agate-excel";
2018-02-03 09:51:02 +00:00
version = "0.2.2";
2017-05-03 04:10:26 +00:00
src = fetchPypi {
inherit pname version;
2018-02-03 09:51:02 +00:00
sha256 = "8923f71ee2b5b7b21e52fb314a769b28fb902f647534f5cbbb41991d8710f4c7";
2017-05-03 04:10:26 +00:00
};
propagatedBuildInputs = [ agate openpyxl xlrd ];
meta = with stdenv.lib; {
description = "Adds read support for excel files to agate";
homepage = "https://github.com/wireservice/agate-excel";
license = licenses.mit;
maintainers = with maintainers; [ vrthra ];
};
}