linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / wasabi / default.nix
blobf58574014ed220329938b34b6c47b6fc59b8e477
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytestCheckHook
5 }:
7 buildPythonPackage rec {
8   pname = "wasabi";
9   version = "0.8.2";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "b4a36aaa9ca3a151f0c558f269d442afbb3526f0160fd541acd8a0d5e5712054";
14   };
16   checkInputs = [ pytestCheckHook ];
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   };