pythonPackages.blessed: init at 1.14.2
This is a dependency of awsebcli.
This commit is contained in:
parent
2948b570f5
commit
9a0155a241
21
pkgs/development/python-modules/blessed/default.nix
Normal file
21
pkgs/development/python-modules/blessed/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -1470,6 +1470,8 @@ in {
|
||||
};
|
||||
};
|
||||
|
||||
blessed = callPackage ../development/python-modules/blessed {};
|
||||
|
||||
# Build boost for this specific Python version
|
||||
# TODO: use separate output for libboost_python.so
|
||||
boost = pkgs.boost.override {inherit python;};
|
||||
|
Loading…
Reference in New Issue
Block a user