blob: 535c012c6ec9d96346f793829a3f9560f3479b61 (
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
|
{
buildPythonPackage,
fetchFromGitHub,
lib,
setuptools-scm,
dataproperty,
typepy,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "tabledata";
version = "1.3.4";
pyproject = true;
src = fetchFromGitHub {
owner = "thombashi";
repo = "tabledata";
tag = "v${version}";
hash = "sha256-kZAEKUOcxb3fK3Oh6+4byJJlB/xzDAEGNpUDEKyVkhs=";
};
build-system = [ setuptools-scm ];
dependencies = [
dataproperty
typepy
];
nativeCheckInputs = [ pytestCheckHook ];
meta = {
homepage = "https://github.com/thombashi/tabledata";
description = "Library to represent tabular data";
changelog = "https://github.com/thombashi/tabledata/releases/tag/${src.tag}";
maintainers = [ ];
license = lib.licenses.mit;
};
}
|