blob: 290774b17b41d2c34bc04c0843c7d4809dace296 (
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
32
|
{ buildPythonPackage
, fetchFromGitHub
, lib
, dataproperty
, typepy
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "tabledata";
version = "1.3.3";
format = "setuptools";
src = fetchFromGitHub {
owner = "thombashi";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-84KrXnks76mvIjcEeQPpwd8rPO5SMbH/jfqERaFTrWo=";
};
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;
};
}
|