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";
version = "0.8.1";
2019-05-11 14:28:01 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "6e5228a51f5550844ef5080e74759e7ecb6e344241989d018686ba968f0b4f5a";
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
}