2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv
|
2019-05-11 14:28:01 +01:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2020-08-27 13:27:12 +01:00
|
|
|
, pytestCheckHook
|
2019-05-11 14:28:01 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "wasabi";
|
2020-08-27 13:27:12 +01:00
|
|
|
version = "0.8.0";
|
2019-05-11 14:28:01 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-08-27 13:27:12 +01:00
|
|
|
sha256 = "75fec6db6193c8615d7f398ae4aa2c4ad294e6e3e81c6a6dbbbd3864ee2223c3";
|
2019-05-11 14:28:01 +01:00
|
|
|
};
|
|
|
|
|
2020-08-27 13:27:12 +01:00
|
|
|
checkInputs = [ pytestCheckHook ];
|
2019-05-11 14:28:01 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-05-11 14:28:01 +01:00
|
|
|
description = "A lightweight console printing and formatting toolkit";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/ines/wasabi";
|
2020-08-27 13:27:12 +01:00
|
|
|
changelog = "https://github.com/ines/wasabi/releases/tag/v${version}";
|
2019-05-11 14:28:01 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ danieldk ];
|
2020-08-27 13:27:12 +01:00
|
|
|
};
|
2019-05-11 14:28:01 +01:00
|
|
|
}
|