depot/third_party/nixpkgs/pkgs/development/python-modules/tabledata/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

36 lines
789 B
Nix

{
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 = "Library to represent tabular data";
changelog = "https://github.com/thombashi/tabledata/releases/tag/v${version}";
maintainers = with maintainers; [ genericnerdyusername ];
license = licenses.mit;
};
}