2021-01-25 00:26:54 -08:00
|
|
|
{ lib
|
2019-05-11 06:28:01 -07:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2020-08-27 05:27:12 -07:00
|
|
|
, pytestCheckHook
|
2019-05-11 06:28:01 -07:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "wasabi";
|
2021-01-26 10:01:31 -08:00
|
|
|
version = "0.8.1";
|
2019-05-11 06:28:01 -07:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-01-26 10:01:31 -08:00
|
|
|
sha256 = "6e5228a51f5550844ef5080e74759e7ecb6e344241989d018686ba968f0b4f5a";
|
2019-05-11 06:28:01 -07:00
|
|
|
};
|
|
|
|
|
2020-08-27 05:27:12 -07:00
|
|
|
checkInputs = [ pytestCheckHook ];
|
2019-05-11 06:28:01 -07:00
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2019-05-11 06:28:01 -07:00
|
|
|
description = "A lightweight console printing and formatting toolkit";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/ines/wasabi";
|
2020-08-27 05:27:12 -07:00
|
|
|
changelog = "https://github.com/ines/wasabi/releases/tag/v${version}";
|
2019-05-11 06:28:01 -07:00
|
|
|
license = licenses.mit;
|
2020-08-27 05:27:12 -07:00
|
|
|
};
|
2019-05-11 06:28:01 -07:00
|
|
|
}
|