2024-06-05 15:53:02 +00:00
|
|
|
{
|
|
|
|
buildPythonPackage,
|
|
|
|
fetchFromGitHub,
|
|
|
|
lib,
|
|
|
|
dataproperty,
|
|
|
|
typepy,
|
|
|
|
pytestCheckHook,
|
2023-02-09 11:40:11 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "tabledata";
|
2023-10-09 19:29:22 +00:00
|
|
|
version = "1.3.3";
|
2024-01-02 11:29:13 +00:00
|
|
|
format = "setuptools";
|
2023-02-09 11:40:11 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "thombashi";
|
|
|
|
repo = pname;
|
2023-03-15 16:39:30 +00:00
|
|
|
rev = "refs/tags/v${version}";
|
2023-10-09 19:29:22 +00:00
|
|
|
hash = "sha256-84KrXnks76mvIjcEeQPpwd8rPO5SMbH/jfqERaFTrWo=";
|
2023-02-09 11:40:11 +00:00
|
|
|
};
|
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
dataproperty
|
|
|
|
typepy
|
|
|
|
];
|
2023-02-09 11:40:11 +00:00
|
|
|
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/thombashi/tabledata";
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Library to represent tabular data";
|
2023-03-15 16:39:30 +00:00
|
|
|
changelog = "https://github.com/thombashi/tabledata/releases/tag/v${version}";
|
2023-02-09 11:40:11 +00:00
|
|
|
maintainers = with maintainers; [ genericnerdyusername ];
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|