nixpkgs/pkgs/development/python-modules/wasabi/default.nix

25 lines
555 B
Nix
Raw Normal View History

{ lib
2019-05-11 14:28:01 +01:00
, buildPythonPackage
, fetchPypi
, pytestCheckHook
2019-05-11 14:28:01 +01:00
}:
buildPythonPackage rec {
pname = "wasabi";
2021-02-20 09:09:19 +00:00
version = "0.8.2";
2019-05-11 14:28:01 +01:00
src = fetchPypi {
inherit pname version;
2021-02-20 09:09:19 +00:00
sha256 = "b4a36aaa9ca3a151f0c558f269d442afbb3526f0160fd541acd8a0d5e5712054";
2019-05-11 14:28:01 +01:00
};
checkInputs = [ pytestCheckHook ];
2019-05-11 14:28:01 +01:00
meta = with lib; {
2019-05-11 14:28:01 +01:00
description = "A lightweight console printing and formatting toolkit";
homepage = "https://github.com/ines/wasabi";
changelog = "https://github.com/ines/wasabi/releases/tag/v${version}";
2019-05-11 14:28:01 +01:00
license = licenses.mit;
};
2019-05-11 14:28:01 +01:00
}