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

26 lines
615 B
Nix
Raw Normal View History

2019-05-11 13:28:01 +00:00
{ stdenv
, buildPythonPackage
, fetchPypi
, pytestCheckHook
2019-05-11 13:28:01 +00:00
}:
buildPythonPackage rec {
pname = "wasabi";
version = "0.8.0";
2019-05-11 13:28:01 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "75fec6db6193c8615d7f398ae4aa2c4ad294e6e3e81c6a6dbbbd3864ee2223c3";
2019-05-11 13:28:01 +00:00
};
checkInputs = [ pytestCheckHook ];
2019-05-11 13:28:01 +00:00
meta = with stdenv.lib; {
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 13:28:01 +00:00
license = licenses.mit;
maintainers = with maintainers; [ danieldk ];
};
2019-05-11 13:28:01 +00:00
}