pythonPackages.mozterm: init at 0.1.0
This commit is contained in:
parent
f760fcb239
commit
283002461b
|
@ -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;
|
||||
};
|
||||
}
|
|
@ -9860,6 +9860,8 @@ in {
|
|||
};
|
||||
};
|
||||
|
||||
mozterm = callPackage ../development/python-modules/mozterm { };
|
||||
|
||||
mplleaflet = callPackage ../development/python-modules/mplleaflet { };
|
||||
|
||||
multidict = callPackage ../development/python-modules/multidict { };
|
||||
|
|
Loading…
Reference in New Issue