pythonPackages.mozterm: init at 0.1.0

This commit is contained in:
Robert Schütz 2018-02-26 23:56:36 +01:00
parent f760fcb239
commit 283002461b
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,16 @@
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "mozterm";
version = "0.1.0";
src = fetchPypi {
inherit pname version;
sha256 = "4ebf8bd772d97c0f557184173f0f96cfca0abfc07e1ae975fbcfa76be50b5561";
};
meta = with lib; {
description = "Terminal abstractions built around the blessings module";
license = licenses.mpl20;
};
}

View File

@ -9860,6 +9860,8 @@ in {
};
};
mozterm = callPackage ../development/python-modules/mozterm { };
mplleaflet = callPackage ../development/python-modules/mplleaflet { };
multidict = callPackage ../development/python-modules/multidict { };