python3Packages.tabledata: init at 1.3.0

This commit is contained in:
GenericNerdyUsername 2023-01-26 19:26:11 +00:00
parent 6b1a62aab0
commit ce6fde7abd
No known key found for this signature in database
GPG Key ID: 65BA194581245B15
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,30 @@
{ buildPythonPackage
, fetchFromGitHub
, lib
, dataproperty
, typepy
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "tabledata";
version = "1.3.0";
src = fetchFromGitHub {
owner = "thombashi";
repo = pname;
rev = "v${version}";
hash = "sha256-6Nkdc32cp9wbmw7cnBn5VAJKfqxNunyxExuZ9b+qWNY=";
};
propagatedBuildInputs = [ dataproperty typepy ];
nativeCheckInputs = [ pytestCheckHook ];
meta = with lib; {
homepage = "https://github.com/thombashi/tabledata";
description = "A library to represent tabular data";
maintainers = with maintainers; [ genericnerdyusername ];
license = licenses.mit;
};
}

View File

@ -11200,6 +11200,8 @@ self: super: with self; {
tableaudocumentapi = callPackage ../development/python-modules/tableaudocumentapi { };
tabledata = callPackage ../development/python-modules/tabledata { };
tables = callPackage ../development/python-modules/tables { };
tablib = callPackage ../development/python-modules/tablib { };