python3Packages.tabledata: init at 1.3.0
This commit is contained in:
30
pkgs/development/python-modules/tabledata/default.nix
Normal file
30
pkgs/development/python-modules/tabledata/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -11205,6 +11205,8 @@ self: super: with self; {
|
|||||||
|
|
||||||
tableaudocumentapi = callPackage ../development/python-modules/tableaudocumentapi { };
|
tableaudocumentapi = callPackage ../development/python-modules/tableaudocumentapi { };
|
||||||
|
|
||||||
|
tabledata = callPackage ../development/python-modules/tabledata { };
|
||||||
|
|
||||||
tables = callPackage ../development/python-modules/tables { };
|
tables = callPackage ../development/python-modules/tables { };
|
||||||
|
|
||||||
tablib = callPackage ../development/python-modules/tablib { };
|
tablib = callPackage ../development/python-modules/tablib { };
|
||||||
|
|||||||
Reference in New Issue
Block a user