1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, pytestCheckHook
5}:
6
7buildPythonPackage rec {
8 pname = "wasabi";
9 version = "0.8.0";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "75fec6db6193c8615d7f398ae4aa2c4ad294e6e3e81c6a6dbbbd3864ee2223c3";
14 };
15
16 checkInputs = [ pytestCheckHook ];
17
18 meta = with stdenv.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 maintainers = with maintainers; [ danieldk ];
24 };
25}