pythonPackages.blessed: init at 1.14.2

This is a dependency of awsebcli.
This commit is contained in:
Ruben Maher
2017-09-01 21:08:22 +09:30
committed by Frederik Rietdijk
parent 2948b570f5
commit 9a0155a241
2 changed files with 23 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
{ stdenv, buildPythonPackage, fetchPypi, six, wcwidth }:
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "blessed";
version = "1.14.2";
src = fetchPypi {
inherit pname version;
sha256 = "0fv9f0074kxy1849h0kwwxw12sifpq3bv63pcz900zzjsigi4hi3";
};
propagatedBuildInputs = [ wcwidth six ];
meta = with stdenv.lib; {
homepage = https://github.com/jquast/blessed;
description = "A thin, practical wrapper around terminal capabilities in Python.";
maintainers = with maintainers; [ eqyiel ];
license = licenses.mit;
};
}