mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-10-31 22:51:22 +00:00
python3Packages.tabledata: init at 1.3.0
This commit is contained in:
parent
6b1a62aab0
commit
ce6fde7abd
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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user