1{ lib
2, buildPythonPackage
3, fetchPypi
4, pytestCheckHook
5}:
6
7buildPythonPackage rec {
8 pname = "wasabi";
9 version = "0.8.2";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "b4a36aaa9ca3a151f0c558f269d442afbb3526f0160fd541acd8a0d5e5712054";
14 };
15
16 checkInputs = [ pytestCheckHook ];
17
18 meta = with lib; {
19 description = "A lightweight console printing and formatting toolkit";
20 homepage = "https://github.com/ines/wasabi";
21 changelog = "https://github.com/ines/wasabi/releases/tag/v${version}";
22 license = licenses.mit;
23 };
24}