summary refs log tree commit diff
path: root/pkgs/development/python-modules/tabledata/default.nix
blob: 5e7b00c99efadfb04057c478e8fba5113bf60283 (plain) (blame)
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
{ buildPythonPackage
, fetchFromGitHub
, lib
, dataproperty
, typepy
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "tabledata";
  version = "1.3.1";

  src = fetchFromGitHub {
    owner = "thombashi";
    repo = pname;
    rev = "refs/tags/v${version}";
    hash = "sha256-oDo+wj5MO5Zopya2lp+sU/LAnFGZy6OIdW4YgcAmw1Q=";
  };

  propagatedBuildInputs = [ dataproperty typepy ];

  nativeCheckInputs = [ pytestCheckHook ];

  meta = with lib; {
    homepage = "https://github.com/thombashi/tabledata";
    description = "A library to represent tabular data";
    changelog = "https://github.com/thombashi/tabledata/releases/tag/v${version}";
    maintainers = with maintainers; [ genericnerdyusername ];
    license = licenses.mit;
  };
}