blob: a017f71834bdda8207713a3f06d026a54f061c4c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
{
lib,
fetchPypi,
buildPythonPackage,
agate,
openpyxl,
xlrd,
olefile,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "agate-excel";
version = "0.4.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-KEJmGMkHRxEebVZumD2Djx4vrmQeppcNessOnUs4QJE=";
};
propagatedBuildInputs = [
agate
openpyxl
xlrd
olefile
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "agate" ];
meta = {
description = "Adds read support for excel files to agate";
homepage = "https://github.com/wireservice/agate-excel";
changelog = "https://github.com/wireservice/agate-excel/blob/${version}/CHANGELOG.rst";
license = lib.licenses.mit;
maintainers = [ ];
};
}
|