mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
28 lines
561 B
Nix
28 lines
561 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, nose
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
version = "0.8.2";
|
|
pname = "tabulate";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "e4ca13f26d0a6be2a2915428dc21e732f1e44dad7f76d7030b2ef1ec251cf7f2";
|
|
};
|
|
|
|
checkInputs = [ nose ];
|
|
|
|
# Tests: cannot import common (relative import).
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "Pretty-print tabular data";
|
|
homepage = https://bitbucket.org/astanin/python-tabulate;
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ fridh ];
|
|
};
|
|
}
|