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

26 lines
613 B
Nix
Raw Normal View History

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