nixpkgs/pkgs/development/python-modules/blessed/default.nix
2021-06-21 16:59:58 -07:00

31 lines
726 B
Nix

{ lib, buildPythonPackage, fetchPypi, fetchpatch, six
, wcwidth, pytest, mock, glibcLocales
}:
buildPythonPackage rec {
pname = "blessed";
version = "1.18.1";
src = fetchPypi {
inherit pname version;
sha256 = "8b09936def6bc06583db99b65636b980075733e13550cb6af262ce724a55da23";
};
checkInputs = [ pytest mock glibcLocales ];
# Default tox.ini parameters not needed
checkPhase = ''
rm tox.ini
pytest
'';
propagatedBuildInputs = [ wcwidth six ];
meta = with lib; {
homepage = "https://github.com/jquast/blessed";
description = "A thin, practical wrapper around terminal capabilities in Python.";
maintainers = with maintainers; [ eqyiel ];
license = licenses.mit;
};
}