2021-01-25 09:26:54 +01:00
|
|
|
{ lib
|
2019-05-11 15:28:01 +02:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2020-08-27 14:27:12 +02:00
|
|
|
, pytestCheckHook
|
2019-05-11 15:28:01 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "wasabi";
|
2021-02-20 10:09:19 +01:00
|
|
|
version = "0.8.2";
|
2019-05-11 15:28:01 +02:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-02-20 10:09:19 +01:00
|
|
|
sha256 = "b4a36aaa9ca3a151f0c558f269d442afbb3526f0160fd541acd8a0d5e5712054";
|
2019-05-11 15:28:01 +02:00
|
|
|
};
|
|
|
|
|
2020-08-27 14:27:12 +02:00
|
|
|
checkInputs = [ pytestCheckHook ];
|
2019-05-11 15:28:01 +02:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2019-05-11 15:28:01 +02:00
|
|
|
description = "A lightweight console printing and formatting toolkit";
|
2020-03-31 21:11:51 -04:00
|
|
|
homepage = "https://github.com/ines/wasabi";
|
2020-08-27 14:27:12 +02:00
|
|
|
changelog = "https://github.com/ines/wasabi/releases/tag/v${version}";
|
2019-05-11 15:28:01 +02:00
|
|
|
license = licenses.mit;
|
2020-08-27 14:27:12 +02:00
|
|
|
};
|
2019-05-11 15:28:01 +02:00
|
|
|
}
|