1{
2 buildPythonPackage,
3 fetchFromGitHub,
4 lib,
5 setuptools-scm,
6 dataproperty,
7 typepy,
8 pytestCheckHook,
9}:
10
11buildPythonPackage rec {
12 pname = "tabledata";
13 version = "1.3.4";
14 pyproject = true;
15
16 src = fetchFromGitHub {
17 owner = "thombashi";
18 repo = "tabledata";
19 tag = "v${version}";
20 hash = "sha256-kZAEKUOcxb3fK3Oh6+4byJJlB/xzDAEGNpUDEKyVkhs=";
21 };
22
23 build-system = [ setuptools-scm ];
24
25 dependencies = [
26 dataproperty
27 typepy
28 ];
29
30 nativeCheckInputs = [ pytestCheckHook ];
31
32 meta = {
33 homepage = "https://github.com/thombashi/tabledata";
34 description = "Library to represent tabular data";
35 changelog = "https://github.com/thombashi/tabledata/releases/tag/${src.tag}";
36 maintainers = with lib.maintainers; [ genericnerdyusername ];
37 license = lib.licenses.mit;
38 };
39}